home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / lib / perl / 5.10.1 / Config.pod < prev    next >
Encoding:
Text File  |  2012-12-11  |  221.3 KB  |  8,825 lines

  1. =head1 NAME
  2.  
  3. Config - access Perl configuration information
  4.  
  5. =head1 SYNOPSIS
  6.  
  7.     use Config;
  8.     if ($Config{usethreads}) {
  9.     print "has thread support\n"
  10.     } 
  11.  
  12.     use Config qw(myconfig config_sh config_vars config_re);
  13.  
  14.     print myconfig();
  15.  
  16.     print config_sh();
  17.  
  18.     print config_re();
  19.  
  20.     config_vars(qw(osname archname));
  21.  
  22.  
  23. =head1 DESCRIPTION
  24.  
  25. The Config module contains all the information that was available to
  26. the C<Configure> program at Perl build time (over 900 values).
  27.  
  28. Shell variables from the F<config.sh> file (written by Configure) are
  29. stored in the readonly-variable C<%Config>, indexed by their names.
  30.  
  31. Values stored in config.sh as 'undef' are returned as undefined
  32. values.  The perl C<exists> function can be used to check if a
  33. named variable exists.
  34.  
  35. For a description of the variables, please have a look at the
  36. Glossary file, as written in the Porting folder, or use the url:
  37. http://perl5.git.perl.org/perl.git/blob/HEAD:/Porting/Glossary
  38.  
  39. =over 4
  40.  
  41. =item myconfig()
  42.  
  43. Returns a textual summary of the major perl configuration values.
  44. See also C<-V> in L<perlrun/Switches>.
  45.  
  46. =item config_sh()
  47.  
  48. Returns the entire perl configuration information in the form of the
  49. original config.sh shell variable assignment script.
  50.  
  51. =item config_re($regex)
  52.  
  53. Like config_sh() but returns, as a list, only the config entries who's
  54. names match the $regex.
  55.  
  56. =item config_vars(@names)
  57.  
  58. Prints to STDOUT the values of the named configuration variable. Each is
  59. printed on a separate line in the form:
  60.  
  61.   name='value';
  62.  
  63. Names which are unknown are output as C<name='UNKNOWN';>.
  64. See also C<-V:name> in L<perlrun/Switches>.
  65.  
  66. =back
  67.  
  68. =head1 EXAMPLE
  69.  
  70. Here's a more sophisticated example of using %Config:
  71.  
  72.     use Config;
  73.     use strict;
  74.  
  75.     my %sig_num;
  76.     my @sig_name;
  77.     unless($Config{sig_name} && $Config{sig_num}) {
  78.     die "No sigs?";
  79.     } else {
  80.     my @names = split ' ', $Config{sig_name};
  81.     @sig_num{@names} = split ' ', $Config{sig_num};
  82.     foreach (@names) {
  83.         $sig_name[$sig_num{$_}] ||= $_;
  84.     }   
  85.     }
  86.  
  87.     print "signal #17 = $sig_name[17]\n";
  88.     if ($sig_num{ALRM}) { 
  89.     print "SIGALRM is $sig_num{ALRM}\n";
  90.     }   
  91.  
  92. =head1 WARNING
  93.  
  94. Because this information is not stored within the perl executable
  95. itself it is possible (but unlikely) that the information does not
  96. relate to the actual perl binary which is being used to access it.
  97.  
  98. The Config module is installed into the architecture and version
  99. specific library directory ($Config{installarchlib}) and it checks the
  100. perl version number when loaded.
  101.  
  102. The values stored in config.sh may be either single-quoted or
  103. double-quoted. Double-quoted strings are handy for those cases where you
  104. need to include escape sequences in the strings. To avoid runtime variable
  105. interpolation, any C<$> and C<@> characters are replaced by C<\$> and
  106. C<\@>, respectively. This isn't foolproof, of course, so don't embed C<\$>
  107. or C<\@> in double-quoted strings unless you're willing to deal with the
  108. consequences. (The slashes will end up escaped and the C<$> or C<@> will
  109. trigger variable interpolation)
  110.  
  111. =head1 GLOSSARY
  112.  
  113. Most C<Config> variables are determined by the C<Configure> script
  114. on platforms supported by it (which is most UNIX platforms).  Some
  115. platforms have custom-made C<Config> variables, and may thus not have
  116. some of the variables described below, or may have extraneous variables
  117. specific to that particular port.  See the port specific documentation
  118. in such cases.
  119.  
  120. =cut
  121.  
  122. =head2 _
  123.  
  124. =over 4
  125.  
  126. =cut
  127.  
  128. =item C<_a>
  129.  
  130. From F<Unix.U>:
  131.  
  132. This variable defines the extension used for ordinary library files.
  133. For unix, it is F<.a>.  The F<.> is included.  Other possible
  134. values include F<.lib>.
  135.  
  136. =item C<_exe>
  137.  
  138. From F<Unix.U>:
  139.  
  140. This variable defines the extension used for executable files.
  141. C<DJGPP>, Cygwin and F<OS/2> use F<.exe>.  Stratus C<VOS> uses F<.pm>.
  142. On operating systems which do not require a specific extension
  143. for executable files, this variable is empty.
  144.  
  145. =item C<_o>
  146.  
  147. From F<Unix.U>:
  148.  
  149. This variable defines the extension used for object files.
  150. For unix, it is F<.o>.  The F<.> is included.  Other possible
  151. values include F<.obj>.
  152.  
  153. =back
  154.  
  155. =cut
  156.  
  157. =head2 a
  158.  
  159. =over 4
  160.  
  161. =cut
  162.  
  163. =item C<afs>
  164.  
  165. From F<afs.U>:
  166.  
  167. This variable is set to C<true> if C<AFS> (Andrew File System) is used
  168. on the system, C<false> otherwise.  It is possible to override this
  169. with a hint value or command line option, but you'd better know
  170. what you are doing.
  171.  
  172. =item C<afsroot>
  173.  
  174. From F<afs.U>:
  175.  
  176. This variable is by default set to F</afs>. In the unlikely case
  177. this is not the correct root, it is possible to override this with
  178. a hint value or command line option.  This will be used in subsequent
  179. tests for AFSness in the configure and test process.
  180.  
  181. =item C<alignbytes>
  182.  
  183. From F<alignbytes.U>:
  184.  
  185. This variable holds the number of bytes required to align a
  186. double-- or a long double when applicable. Usual values are
  187. 2, 4 and 8.  The default is eight, for safety.
  188.  
  189. =item C<ansi2knr>
  190.  
  191. From F<ansi2knr.U>:
  192.  
  193. This variable is set if the user needs to run ansi2knr.
  194. Currently, this is not supported, so we just abort.
  195.  
  196. =item C<aphostname>
  197.  
  198. From F<d_gethname.U>:
  199.  
  200. This variable contains the command which can be used to compute the
  201. host name. The command is fully qualified by its absolute path, to make
  202. it safe when used by a process with super-user privileges.
  203.  
  204. =item C<api_revision>
  205.  
  206. From F<patchlevel.U>:
  207.  
  208. The three variables, api_revision, api_version, and
  209. api_subversion, specify the version of the oldest perl binary
  210. compatible with the present perl.  In a full version string
  211. such as F<5.6.1>, api_revision is the C<5>.
  212. Prior to 5.5.640, the format was a floating point number,
  213. like 5.00563.
  214.  
  215. F<perl.c>:incpush() and F<lib/lib.pm> will automatically search in
  216. F<$sitelib/.>. for older directories back to the limit specified
  217. by these api_ variables.  This is only useful if you have a
  218. perl library directory tree structured like the default one.
  219. See C<INSTALL> for how this works.  The versioned site_perl
  220. directory was introduced in 5.005, so that is the lowest
  221. possible value.  The version list appropriate for the current
  222. system is determined in F<inc_version_list.U>.
  223.  
  224. C<XXX> To do:  Since compatibility can depend on compile time
  225. options (such as bincompat, longlong, etc.) it should
  226. (perhaps) be set by Configure, but currently it isn't.
  227. Currently, we read a hard-wired value from F<patchlevel.h>.
  228. Perhaps what we ought to do is take the hard-wired value from
  229. F<patchlevel.h> but then modify it if the current Configure
  230. options warrant.  F<patchlevel.h> then would use an #ifdef guard.
  231.  
  232. =item C<api_subversion>
  233.  
  234. From F<patchlevel.U>:
  235.  
  236. The three variables, api_revision, api_version, and
  237. api_subversion, specify the version of the oldest perl binary
  238. compatible with the present perl.  In a full version string
  239. such as F<5.6.1>, api_subversion is the C<1>.  See api_revision for
  240. full details.
  241.  
  242. =item C<api_version>
  243.  
  244. From F<patchlevel.U>:
  245.  
  246. The three variables, api_revision, api_version, and
  247. api_subversion, specify the version of the oldest perl binary
  248. compatible with the present perl.  In a full version string
  249. such as F<5.6.1>, api_version is the C<6>.  See api_revision for
  250. full details.  As a special case, 5.5.0 is rendered in the
  251. old-style as 5.005.  (In the 5.005_0x maintenance series,
  252. this was the only versioned directory in $sitelib.)
  253.  
  254. =item C<api_versionstring>
  255.  
  256. From F<patchlevel.U>:
  257.  
  258. This variable combines api_revision, api_version, and
  259. api_subversion in a format such as 5.6.1 (or 5_6_1) suitable
  260. for use as a directory name.  This is filesystem dependent.
  261.  
  262. =item C<ar>
  263.  
  264. From F<Loc.U>:
  265.  
  266. This variable is used internally by Configure to determine the
  267. full pathname (if any) of the ar program.  After Configure runs,
  268. the value is reset to a plain C<ar> and is not useful.
  269.  
  270. =item C<archlib>
  271.  
  272. From F<archlib.U>:
  273.  
  274. This variable holds the name of the directory in which the user wants
  275. to put architecture-dependent public library files for $package.
  276. It is most often a local directory such as F</usr/local/lib>.
  277. Programs using this variable must be prepared to deal
  278. with filename expansion.
  279.  
  280. =item C<archlibexp>
  281.  
  282. From F<archlib.U>:
  283.  
  284. This variable is the same as the archlib variable, but is
  285. filename expanded at configuration time, for convenient use.
  286.  
  287. =item C<archname>
  288.  
  289. From F<archname.U>:
  290.  
  291. This variable is a short name to characterize the current
  292. architecture.  It is used mainly to construct the default archlib.
  293.  
  294. =item C<archname64>
  295.  
  296. From F<use64bits.U>:
  297.  
  298. This variable is used for the 64-bitness part of $archname.
  299.  
  300. =item C<archobjs>
  301.  
  302. From F<Unix.U>:
  303.  
  304. This variable defines any additional objects that must be linked
  305. in with the program on this architecture.  On unix, it is usually
  306. empty.  It is typically used to include emulations of unix calls
  307. or other facilities.  For perl on F<OS/2>, for example, this would
  308. include F<os2/os2.obj>.
  309.  
  310. =item C<asctime_r_proto>
  311.  
  312. From F<d_asctime_r.U>:
  313.  
  314. This variable encodes the prototype of asctime_r.
  315. It is zero if d_asctime_r is undef, and one of the
  316. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_asctime_r
  317. is defined.
  318.  
  319. =item C<awk>
  320.  
  321. From F<Loc.U>:
  322.  
  323. This variable is used internally by Configure to determine the
  324. full pathname (if any) of the awk program.  After Configure runs,
  325. the value is reset to a plain C<awk> and is not useful.
  326.  
  327. =back
  328.  
  329. =cut
  330.  
  331. =head2 b
  332.  
  333. =over 4
  334.  
  335. =cut
  336.  
  337. =item C<baserev>
  338.  
  339. From F<baserev.U>:
  340.  
  341. The base revision level of this package, from the F<.package> file.
  342.  
  343. =item C<bash>
  344.  
  345. From F<Loc.U>:
  346.  
  347. This variable is defined but not used by Configure.
  348. The value is the empty string and is not useful.
  349.  
  350. =item C<bin>
  351.  
  352. From F<bin.U>:
  353.  
  354. This variable holds the name of the directory in which the user wants
  355. to put publicly executable images for the package in question.  It
  356. is most often a local directory such as F</usr/local/bin>. Programs using
  357. this variable must be prepared to deal with F<~name> substitution.
  358.  
  359. =item C<binexp>
  360.  
  361. From F<bin.U>:
  362.  
  363. This is the same as the bin variable, but is filename expanded at
  364. configuration time, for use in your makefiles.
  365.  
  366. =item C<bison>
  367.  
  368. From F<Loc.U>:
  369.  
  370. This variable is used internally by Configure to determine the
  371. full pathname (if any) of the bison program.  After Configure runs,
  372. the value is reset to a plain C<bison> and is not useful.
  373.  
  374. =item C<byacc>
  375.  
  376. From F<Loc.U>:
  377.  
  378. This variable is used internally by Configure to determine the
  379. full pathname (if any) of the byacc program.  After Configure runs,
  380. the value is reset to a plain C<byacc> and is not useful.
  381.  
  382. =item C<byteorder>
  383.  
  384. From F<byteorder.U>:
  385.  
  386. This variable holds the byte order in a C<UV>. In the following,
  387. larger digits indicate more significance.  The variable byteorder
  388. is either 4321 on a big-endian machine, or 1234 on a little-endian,
  389. or 87654321 on a Cray ... or 3412 with weird order !
  390.  
  391. =back
  392.  
  393. =cut
  394.  
  395. =head2 c
  396.  
  397. =over 4
  398.  
  399. =cut
  400.  
  401. =item C<c>
  402.  
  403. From F<n.U>:
  404.  
  405. This variable contains the \c string if that is what causes the echo
  406. command to suppress newline.  Otherwise it is null.  Correct usage is
  407. $echo $n "prompt for a question: $c".
  408.  
  409. =item C<castflags>
  410.  
  411. From F<d_castneg.U>:
  412.  
  413. This variable contains a flag that precise difficulties the
  414. compiler has casting odd floating values to unsigned long:
  415. 0 = ok
  416. 1 = couldn't cast < 0
  417. 2 = couldn't cast >= 0x80000000
  418. 4 = couldn't cast in argument expression list
  419.  
  420. =item C<cat>
  421.  
  422. From F<Loc.U>:
  423.  
  424. This variable is used internally by Configure to determine the
  425. full pathname (if any) of the cat program.  After Configure runs,
  426. the value is reset to a plain C<cat> and is not useful.
  427.  
  428. =item C<cc>
  429.  
  430. From F<cc.U>:
  431.  
  432. This variable holds the name of a command to execute a C compiler which
  433. can resolve multiple global references that happen to have the same
  434. name.  Usual values are C<cc> and C<gcc>.
  435. Fervent C<ANSI> compilers may be called C<c89>.  C<AIX> has xlc.
  436.  
  437. =item C<cccdlflags>
  438.  
  439. From F<dlsrc.U>:
  440.  
  441. This variable contains any special flags that might need to be
  442. passed with C<cc -c> to compile modules to be used to create a shared
  443. library that will be used for dynamic loading.  For hpux, this
  444. should be +z.  It is up to the makefile to use it.
  445.  
  446. =item C<ccdlflags>
  447.  
  448. From F<dlsrc.U>:
  449.  
  450. This variable contains any special flags that might need to be
  451. passed to cc to link with a shared library for dynamic loading.
  452. It is up to the makefile to use it.  For sunos 4.1, it should
  453. be empty.
  454.  
  455. =item C<ccflags>
  456.  
  457. From F<ccflags.U>:
  458.  
  459. This variable contains any additional C compiler flags desired by
  460. the user.  It is up to the Makefile to use this.
  461.  
  462. =item C<ccflags_uselargefiles>
  463.  
  464. From F<uselfs.U>:
  465.  
  466. This variable contains the compiler flags needed by large file builds
  467. and added to ccflags by hints files.
  468.  
  469. =item C<ccname>
  470.  
  471. From F<Checkcc.U>:
  472.  
  473. This can set either by hints files or by Configure.  If using
  474. gcc, this is gcc, and if not, usually equal to cc, unimpressive, no?
  475. Some platforms, however, make good use of this by storing the
  476. flavor of the C compiler being used here.  For example if using
  477. the Sun WorkShop suite, ccname will be C<workshop>.
  478.  
  479. =item C<ccsymbols>
  480.  
  481. From F<Cppsym.U>:
  482.  
  483. The variable contains the symbols defined by the C compiler alone.
  484. The symbols defined by cpp or by cc when it calls cpp are not in
  485. this list, see cppsymbols and cppccsymbols.
  486. The list is a space-separated list of symbol=value tokens.
  487.  
  488. =item C<ccversion>
  489.  
  490. From F<Checkcc.U>:
  491.  
  492. This can set either by hints files or by Configure.  If using
  493. a (non-gcc) vendor cc, this variable may contain a version for
  494. the compiler.
  495.  
  496. =item C<cf_by>
  497.  
  498. From F<cf_who.U>:
  499.  
  500. Login name of the person who ran the Configure script and answered the
  501. questions. This is used to tag both F<config.sh> and F<config_h.SH>.
  502.  
  503. =item C<cf_email>
  504.  
  505. From F<cf_email.U>:
  506.  
  507. Electronic mail address of the person who ran Configure. This can be
  508. used by units that require the user's e-mail, like F<MailList.U>.
  509.  
  510. =item C<cf_time>
  511.  
  512. From F<cf_who.U>:
  513.  
  514. Holds the output of the C<date> command when the configuration file was
  515. produced. This is used to tag both F<config.sh> and F<config_h.SH>.
  516.  
  517. =item C<chgrp>
  518.  
  519. From F<Loc.U>:
  520.  
  521. This variable is defined but not used by Configure.
  522. The value is the empty string and is not useful.
  523.  
  524. =item C<chmod>
  525.  
  526. From F<Loc.U>:
  527.  
  528. This variable is used internally by Configure to determine the
  529. full pathname (if any) of the chmod program.  After Configure runs,
  530. the value is reset to a plain C<chmod> and is not useful.
  531.  
  532. =item C<chown>
  533.  
  534. From F<Loc.U>:
  535.  
  536. This variable is defined but not used by Configure.
  537. The value is the empty string and is not useful.
  538.  
  539. =item C<clocktype>
  540.  
  541. From F<d_times.U>:
  542.  
  543. This variable holds the type returned by times(). It can be long,
  544. or clock_t on C<BSD> sites (in which case <sys/types.h> should be
  545. included).
  546.  
  547. =item C<comm>
  548.  
  549. From F<Loc.U>:
  550.  
  551. This variable is used internally by Configure to determine the
  552. full pathname (if any) of the comm program.  After Configure runs,
  553. the value is reset to a plain C<comm> and is not useful.
  554.  
  555. =item C<compress>
  556.  
  557. From F<Loc.U>:
  558.  
  559. This variable is defined but not used by Configure.
  560. The value is the empty string and is not useful.
  561.  
  562. =item C<contains>
  563.  
  564. From F<contains.U>:
  565.  
  566. This variable holds the command to do a grep with a proper return
  567. status.  On most sane systems it is simply C<grep>.  On insane systems
  568. it is a grep followed by a cat followed by a test.  This variable
  569. is primarily for the use of other Configure units.
  570.  
  571. =item C<cp>
  572.  
  573. From F<Loc.U>:
  574.  
  575. This variable is used internally by Configure to determine the
  576. full pathname (if any) of the cp program.  After Configure runs,
  577. the value is reset to a plain C<cp> and is not useful.
  578.  
  579. =item C<cpio>
  580.  
  581. From F<Loc.U>:
  582.  
  583. This variable is defined but not used by Configure.
  584. The value is the empty string and is not useful.
  585.  
  586. =item C<cpp>
  587.  
  588. From F<Loc.U>:
  589.  
  590. This variable is used internally by Configure to determine the
  591. full pathname (if any) of the cpp program.  After Configure runs,
  592. the value is reset to a plain C<cpp> and is not useful.
  593.  
  594. =item C<cpp_stuff>
  595.  
  596. From F<cpp_stuff.U>:
  597.  
  598. This variable contains an identification of the concatenation mechanism
  599. used by the C preprocessor.
  600.  
  601. =item C<cppccsymbols>
  602.  
  603. From F<Cppsym.U>:
  604.  
  605. The variable contains the symbols defined by the C compiler
  606. when it calls cpp.  The symbols defined by the cc alone or cpp
  607. alone are not in this list, see ccsymbols and cppsymbols.
  608. The list is a space-separated list of symbol=value tokens.
  609.  
  610. =item C<cppflags>
  611.  
  612. From F<ccflags.U>:
  613.  
  614. This variable holds the flags that will be passed to the C pre-
  615. processor. It is up to the Makefile to use it.
  616.  
  617. =item C<cpplast>
  618.  
  619. From F<cppstdin.U>:
  620.  
  621. This variable has the same functionality as cppminus, only it applies
  622. to cpprun and not cppstdin.
  623.  
  624. =item C<cppminus>
  625.  
  626. From F<cppstdin.U>:
  627.  
  628. This variable contains the second part of the string which will invoke
  629. the C preprocessor on the standard input and produce to standard
  630. output.  This variable will have the value C<-> if cppstdin needs
  631. a minus to specify standard input, otherwise the value is "".
  632.  
  633. =item C<cpprun>
  634.  
  635. From F<cppstdin.U>:
  636.  
  637. This variable contains the command which will invoke a C preprocessor
  638. on standard input and put the output to stdout. It is guaranteed not
  639. to be a wrapper and may be a null string if no preprocessor can be
  640. made directly available. This preprocessor might be different from the
  641. one used by the C compiler. Don't forget to append cpplast after the
  642. preprocessor options.
  643.  
  644. =item C<cppstdin>
  645.  
  646. From F<cppstdin.U>:
  647.  
  648. This variable contains the command which will invoke the C
  649. preprocessor on standard input and put the output to stdout.
  650. It is primarily used by other Configure units that ask about
  651. preprocessor symbols.
  652.  
  653. =item C<cppsymbols>
  654.  
  655. From F<Cppsym.U>:
  656.  
  657. The variable contains the symbols defined by the C preprocessor
  658. alone.  The symbols defined by cc or by cc when it calls cpp are
  659. not in this list, see ccsymbols and cppccsymbols.
  660. The list is a space-separated list of symbol=value tokens.
  661.  
  662. =item C<crypt_r_proto>
  663.  
  664. From F<d_crypt_r.U>:
  665.  
  666. This variable encodes the prototype of crypt_r.
  667. It is zero if d_crypt_r is undef, and one of the
  668. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_crypt_r
  669. is defined.
  670.  
  671. =item C<cryptlib>
  672.  
  673. From F<d_crypt.U>:
  674.  
  675. This variable holds -lcrypt or the path to a F<libcrypt.a> archive if
  676. the crypt() function is not defined in the standard C library. It is
  677. up to the Makefile to use this.
  678.  
  679. =item C<csh>
  680.  
  681. From F<Loc.U>:
  682.  
  683. This variable is used internally by Configure to determine the
  684. full pathname (if any) of the csh program.  After Configure runs,
  685. the value is reset to a plain C<csh> and is not useful.
  686.  
  687. =item C<ctermid_r_proto>
  688.  
  689. From F<d_ctermid_r.U>:
  690.  
  691. This variable encodes the prototype of ctermid_r.
  692. It is zero if d_ctermid_r is undef, and one of the
  693. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_ctermid_r
  694. is defined.
  695.  
  696. =item C<ctime_r_proto>
  697.  
  698. From F<d_ctime_r.U>:
  699.  
  700. This variable encodes the prototype of ctime_r.
  701. It is zero if d_ctime_r is undef, and one of the
  702. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_ctime_r
  703. is defined.
  704.  
  705. =back
  706.  
  707. =cut
  708.  
  709. =head2 d
  710.  
  711. =over 4
  712.  
  713. =cut
  714.  
  715. =item C<d__fwalk>
  716.  
  717. From F<d__fwalk.U>:
  718.  
  719. This variable conditionally defines C<HAS__FWALK> if _fwalk() is
  720. available to apply a function to all the file handles.
  721.  
  722. =item C<d_access>
  723.  
  724. From F<d_access.U>:
  725.  
  726. This variable conditionally defines C<HAS_ACCESS> if the access() system
  727. call is available to check for access permissions using real IDs.
  728.  
  729. =item C<d_accessx>
  730.  
  731. From F<d_accessx.U>:
  732.  
  733. This variable conditionally defines the C<HAS_ACCESSX> symbol, which
  734. indicates to the C program that the accessx() routine is available.
  735.  
  736. =item C<d_aintl>
  737.  
  738. From F<d_aintl.U>:
  739.  
  740. This variable conditionally defines the C<HAS_AINTL> symbol, which
  741. indicates to the C program that the aintl() routine is available.
  742. If copysignl is also present we can emulate modfl.
  743.  
  744. =item C<d_alarm>
  745.  
  746. From F<d_alarm.U>:
  747.  
  748. This variable conditionally defines the C<HAS_ALARM> symbol, which
  749. indicates to the C program that the alarm() routine is available.
  750.  
  751. =item C<d_archlib>
  752.  
  753. From F<archlib.U>:
  754.  
  755. This variable conditionally defines C<ARCHLIB> to hold the pathname
  756. of architecture-dependent library files for $package.  If
  757. $archlib is the same as $privlib, then this is set to undef.
  758.  
  759. =item C<d_asctime64>
  760.  
  761. From F<d_timefuncs64.U>:
  762.  
  763. This variable conditionally defines the HAS_ASCTIME64 symbol, which
  764. indicates to the C program that the asctime64 () routine is available.
  765.  
  766. =item C<d_asctime_r>
  767.  
  768. From F<d_asctime_r.U>:
  769.  
  770. This variable conditionally defines the C<HAS_ASCTIME_R> symbol,
  771. which indicates to the C program that the asctime_r()
  772. routine is available.
  773.  
  774. =item C<d_atolf>
  775.  
  776. From F<atolf.U>:
  777.  
  778. This variable conditionally defines the C<HAS_ATOLF> symbol, which
  779. indicates to the C program that the atolf() routine is available.
  780.  
  781. =item C<d_atoll>
  782.  
  783. From F<atoll.U>:
  784.  
  785. This variable conditionally defines the C<HAS_ATOLL> symbol, which
  786. indicates to the C program that the atoll() routine is available.
  787.  
  788. =item C<d_attribute_deprecated>
  789.  
  790. From F<d_attribut.U>:
  791.  
  792. This variable conditionally defines C<HASATTRIBUTE_DEPRECATED>, which
  793. indicates that C<GCC> can handle the attribute for marking deprecated
  794. APIs
  795.  
  796. =item C<d_attribute_format>
  797.  
  798. From F<d_attribut.U>:
  799.  
  800. This variable conditionally defines C<HASATTRIBUTE_FORMAT>, which
  801. indicates the C compiler can check for printf-like formats.
  802.  
  803. =item C<d_attribute_malloc>
  804.  
  805. From F<d_attribut.U>:
  806.  
  807. This variable conditionally defines C<HASATTRIBUTE_MALLOC>, which
  808. indicates the C compiler can understand functions as having
  809. malloc-like semantics.
  810.  
  811. =item C<d_attribute_nonnull>
  812.  
  813. From F<d_attribut.U>:
  814.  
  815. This variable conditionally defines C<HASATTRIBUTE_NONNULL>, which
  816. indicates that the C compiler can know that certain arguments
  817. must not be C<NULL>, and will check accordingly at compile time.
  818.  
  819. =item C<d_attribute_noreturn>
  820.  
  821. From F<d_attribut.U>:
  822.  
  823. This variable conditionally defines C<HASATTRIBUTE_NORETURN>, which
  824. indicates that the C compiler can know that certain functions
  825. are guaranteed never to return.
  826.  
  827. =item C<d_attribute_pure>
  828.  
  829. From F<d_attribut.U>:
  830.  
  831. This variable conditionally defines C<HASATTRIBUTE_PURE>, which
  832. indicates that the C compiler can know that certain functions
  833. are C<pure> functions, meaning that they have no side effects, and
  834. only rely on function input F<and/or> global data for their results.
  835.  
  836. =item C<d_attribute_unused>
  837.  
  838. From F<d_attribut.U>:
  839.  
  840. This variable conditionally defines C<HASATTRIBUTE_UNUSED>, which
  841. indicates that the C compiler can know that certain variables
  842. and arguments may not always be used, and to not throw warnings
  843. if they don't get used.
  844.  
  845. =item C<d_attribute_warn_unused_result>
  846.  
  847. From F<d_attribut.U>:
  848.  
  849. This variable conditionally defines
  850. C<HASATTRIBUTE_WARN_UNUSED_RESULT>, which indicates that the C
  851. compiler can know that certain functions have a return values
  852. that must not be ignored, such as malloc() or open().
  853.  
  854. =item C<d_bcmp>
  855.  
  856. From F<d_bcmp.U>:
  857.  
  858. This variable conditionally defines the C<HAS_BCMP> symbol if
  859. the bcmp() routine is available to compare strings.
  860.  
  861. =item C<d_bcopy>
  862.  
  863. From F<d_bcopy.U>:
  864.  
  865. This variable conditionally defines the C<HAS_BCOPY> symbol if
  866. the bcopy() routine is available to copy strings.
  867.  
  868. =item C<d_bsd>
  869.  
  870. From F<Guess.U>:
  871.  
  872. This symbol conditionally defines the symbol C<BSD> when running on a
  873. C<BSD> system.
  874.  
  875. =item C<d_bsdgetpgrp>
  876.  
  877. From F<d_getpgrp.U>:
  878.  
  879. This variable conditionally defines C<USE_BSD_GETPGRP> if
  880. getpgrp needs one arguments whereas C<USG> one needs none.
  881.  
  882. =item C<d_bsdsetpgrp>
  883.  
  884. From F<d_setpgrp.U>:
  885.  
  886. This variable conditionally defines C<USE_BSD_SETPGRP> if
  887. setpgrp needs two arguments whereas C<USG> one needs none.
  888. See also d_setpgid for a C<POSIX> interface.
  889.  
  890. =item C<d_builtin_choose_expr>
  891.  
  892. From F<d_builtin.U>:
  893.  
  894. This conditionally defines C<HAS_BUILTIN_CHOOSE_EXPR>, which
  895. indicates that the compiler supports __builtin_choose_expr(x,y,z).
  896. This built-in function is analogous to the C<x?y:z> operator in C,
  897. except that the expression returned has its type unaltered by
  898. promotion rules. Also, the built-in function does not evaluate
  899. the expression that was not chosen.
  900.  
  901. =item C<d_builtin_expect>
  902.  
  903. From F<d_builtin.U>:
  904.  
  905. This conditionally defines C<HAS_BUILTIN_EXPECT>, which indicates
  906. that the compiler supports __builtin_expect(exp,c).  You may use
  907. __builtin_expect to provide the compiler with branch prediction
  908. information.
  909.  
  910. =item C<d_bzero>
  911.  
  912. From F<d_bzero.U>:
  913.  
  914. This variable conditionally defines the C<HAS_BZERO> symbol if
  915. the bzero() routine is available to set memory to 0.
  916.  
  917. =item C<d_c99_variadic_macros>
  918.  
  919. From F<d_c99_variadic.U>:
  920.  
  921. This variable conditionally defines the HAS_C99_VARIADIC_MACROS
  922. symbol, which indicates to the C program that C99 variadic macros
  923. are available.
  924.  
  925. =item C<d_casti32>
  926.  
  927. From F<d_casti32.U>:
  928.  
  929. This variable conditionally defines CASTI32, which indicates
  930. whether the C compiler can cast large floats to 32-bit ints.
  931.  
  932. =item C<d_castneg>
  933.  
  934. From F<d_castneg.U>:
  935.  
  936. This variable conditionally defines C<CASTNEG>, which indicates
  937. wether the C compiler can cast negative float to unsigned.
  938.  
  939. =item C<d_charvspr>
  940.  
  941. From F<d_vprintf.U>:
  942.  
  943. This variable conditionally defines C<CHARVSPRINTF> if this system
  944. has vsprintf returning type (char*).  The trend seems to be to
  945. declare it as "int vsprintf()".
  946.  
  947. =item C<d_chown>
  948.  
  949. From F<d_chown.U>:
  950.  
  951. This variable conditionally defines the C<HAS_CHOWN> symbol, which
  952. indicates to the C program that the chown() routine is available.
  953.  
  954. =item C<d_chroot>
  955.  
  956. From F<d_chroot.U>:
  957.  
  958. This variable conditionally defines the C<HAS_CHROOT> symbol, which
  959. indicates to the C program that the chroot() routine is available.
  960.  
  961. =item C<d_chsize>
  962.  
  963. From F<d_chsize.U>:
  964.  
  965. This variable conditionally defines the C<CHSIZE> symbol, which
  966. indicates to the C program that the chsize() routine is available
  967. to truncate files.  You might need a -lx to get this routine.
  968.  
  969. =item C<d_class>
  970.  
  971. From F<d_class.U>:
  972.  
  973. This variable conditionally defines the C<HAS_CLASS> symbol, which
  974. indicates to the C program that the class() routine is available.
  975.  
  976. =item C<d_clearenv>
  977.  
  978. From F<d_clearenv.U>:
  979.  
  980. This variable conditionally defines the C<HAS_CLEARENV> symbol, which
  981. indicates to the C program that the clearenv () routine is available.
  982.  
  983. =item C<d_closedir>
  984.  
  985. From F<d_closedir.U>:
  986.  
  987. This variable conditionally defines C<HAS_CLOSEDIR> if closedir() is
  988. available.
  989.  
  990. =item C<d_cmsghdr_s>
  991.  
  992. From F<d_cmsghdr_s.U>:
  993.  
  994. This variable conditionally defines the C<HAS_STRUCT_CMSGHDR> symbol,
  995. which indicates that the struct cmsghdr is supported.
  996.  
  997. =item C<d_const>
  998.  
  999. From F<d_const.U>:
  1000.  
  1001. This variable conditionally defines the C<HASCONST> symbol, which
  1002. indicates to the C program that this C compiler knows about the
  1003. const type.
  1004.  
  1005. =item C<d_copysignl>
  1006.  
  1007. From F<d_copysignl.U>:
  1008.  
  1009. This variable conditionally defines the C<HAS_COPYSIGNL> symbol, which
  1010. indicates to the C program that the copysignl() routine is available.
  1011. If aintl is also present we can emulate modfl.
  1012.  
  1013. =item C<d_cplusplus>
  1014.  
  1015. From F<d_cplusplus.U>:
  1016.  
  1017. This variable conditionally defines the C<USE_CPLUSPLUS> symbol, which
  1018. indicates that a C++ compiler was used to compiled Perl and will be
  1019. used to compile extensions.
  1020.  
  1021. =item C<d_crypt>
  1022.  
  1023. From F<d_crypt.U>:
  1024.  
  1025. This variable conditionally defines the C<CRYPT> symbol, which
  1026. indicates to the C program that the crypt() routine is available
  1027. to encrypt passwords and the like.
  1028.  
  1029. =item C<d_crypt_r>
  1030.  
  1031. From F<d_crypt_r.U>:
  1032.  
  1033. This variable conditionally defines the C<HAS_CRYPT_R> symbol,
  1034. which indicates to the C program that the crypt_r()
  1035. routine is available.
  1036.  
  1037. =item C<d_csh>
  1038.  
  1039. From F<d_csh.U>:
  1040.  
  1041. This variable conditionally defines the C<CSH> symbol, which
  1042. indicates to the C program that the C-shell exists.
  1043.  
  1044. =item C<d_ctermid>
  1045.  
  1046. From F<d_ctermid.U>:
  1047.  
  1048. This variable conditionally defines C<CTERMID> if ctermid() is
  1049. available to generate filename for terminal.
  1050.  
  1051. =item C<d_ctermid_r>
  1052.  
  1053. From F<d_ctermid_r.U>:
  1054.  
  1055. This variable conditionally defines the C<HAS_CTERMID_R> symbol,
  1056. which indicates to the C program that the ctermid_r()
  1057. routine is available.
  1058.  
  1059. =item C<d_ctime64>
  1060.  
  1061. From F<d_timefuncs64.U>:
  1062.  
  1063. This variable conditionally defines the HAS_CTIME64 symbol, which
  1064. indicates to the C program that the ctime64 () routine is available.
  1065.  
  1066. =item C<d_ctime_r>
  1067.  
  1068. From F<d_ctime_r.U>:
  1069.  
  1070. This variable conditionally defines the C<HAS_CTIME_R> symbol,
  1071. which indicates to the C program that the ctime_r()
  1072. routine is available.
  1073.  
  1074. =item C<d_cuserid>
  1075.  
  1076. From F<d_cuserid.U>:
  1077.  
  1078. This variable conditionally defines the C<HAS_CUSERID> symbol, which
  1079. indicates to the C program that the cuserid() routine is available
  1080. to get character login names.
  1081.  
  1082. =item C<d_dbl_dig>
  1083.  
  1084. From F<d_dbl_dig.U>:
  1085.  
  1086. This variable conditionally defines d_dbl_dig if this system's
  1087. header files provide C<DBL_DIG>, which is the number of significant
  1088. digits in a double precision number.
  1089.  
  1090. =item C<d_dbminitproto>
  1091.  
  1092. From F<d_dbminitproto.U>:
  1093.  
  1094. This variable conditionally defines the C<HAS_DBMINIT_PROTO> symbol,
  1095. which indicates to the C program that the system provides
  1096. a prototype for the dbminit() function.  Otherwise, it is
  1097. up to the program to supply one.
  1098.  
  1099. =item C<d_difftime>
  1100.  
  1101. From F<d_difftime.U>:
  1102.  
  1103. This variable conditionally defines the C<HAS_DIFFTIME> symbol, which
  1104. indicates to the C program that the difftime() routine is available.
  1105.  
  1106. =item C<d_difftime64>
  1107.  
  1108. From F<d_timefuncs64.U>:
  1109.  
  1110. This variable conditionally defines the HAS_DIFFTIME64 symbol, which
  1111. indicates to the C program that the difftime64 () routine is available.
  1112.  
  1113. =item C<d_dir_dd_fd>
  1114.  
  1115. From F<d_dir_dd_fd.U>:
  1116.  
  1117. This variable conditionally defines the C<HAS_DIR_DD_FD> symbol, which
  1118. indicates that the C<DIR> directory stream type contains a member
  1119. variable called dd_fd.
  1120.  
  1121. =item C<d_dirfd>
  1122.  
  1123. From F<d_dirfd.U>:
  1124.  
  1125. This variable conditionally defines the C<HAS_DIRFD> constant,
  1126. which indicates to the C program that dirfd() is available
  1127. to return the file descriptor of a directory stream.
  1128.  
  1129. =item C<d_dirnamlen>
  1130.  
  1131. From F<i_dirent.U>:
  1132.  
  1133. This variable conditionally defines C<DIRNAMLEN>, which indicates
  1134. to the C program that the length of directory entry names is
  1135. provided by a d_namelen field.
  1136.  
  1137. =item C<d_dlerror>
  1138.  
  1139. From F<d_dlerror.U>:
  1140.  
  1141. This variable conditionally defines the C<HAS_DLERROR> symbol, which
  1142. indicates to the C program that the dlerror() routine is available.
  1143.  
  1144. =item C<d_dlopen>
  1145.  
  1146. From F<d_dlopen.U>:
  1147.  
  1148. This variable conditionally defines the C<HAS_DLOPEN> symbol, which
  1149. indicates to the C program that the dlopen() routine is available.
  1150.  
  1151. =item C<d_dlsymun>
  1152.  
  1153. From F<d_dlsymun.U>:
  1154.  
  1155. This variable conditionally defines C<DLSYM_NEEDS_UNDERSCORE>, which
  1156. indicates that we need to prepend an underscore to the symbol
  1157. name before calling dlsym().
  1158.  
  1159. =item C<d_dosuid>
  1160.  
  1161. From F<d_dosuid.U>:
  1162.  
  1163. This variable conditionally defines the symbol C<DOSUID>, which
  1164. tells the C program that it should insert setuid emulation code
  1165. on hosts which have setuid #! scripts disabled.
  1166.  
  1167. =item C<d_drand48_r>
  1168.  
  1169. From F<d_drand48_r.U>:
  1170.  
  1171. This variable conditionally defines the HAS_DRAND48_R symbol,
  1172. which indicates to the C program that the drand48_r()
  1173. routine is available.
  1174.  
  1175. =item C<d_drand48proto>
  1176.  
  1177. From F<d_drand48proto.U>:
  1178.  
  1179. This variable conditionally defines the HAS_DRAND48_PROTO symbol,
  1180. which indicates to the C program that the system provides
  1181. a prototype for the drand48() function.  Otherwise, it is
  1182. up to the program to supply one.
  1183.  
  1184. =item C<d_dup2>
  1185.  
  1186. From F<d_dup2.U>:
  1187.  
  1188. This variable conditionally defines HAS_DUP2 if dup2() is
  1189. available to duplicate file descriptors.
  1190.  
  1191. =item C<d_eaccess>
  1192.  
  1193. From F<d_eaccess.U>:
  1194.  
  1195. This variable conditionally defines the C<HAS_EACCESS> symbol, which
  1196. indicates to the C program that the eaccess() routine is available.
  1197.  
  1198. =item C<d_endgrent>
  1199.  
  1200. From F<d_endgrent.U>:
  1201.  
  1202. This variable conditionally defines the C<HAS_ENDGRENT> symbol, which
  1203. indicates to the C program that the endgrent() routine is available
  1204. for sequential access of the group database.
  1205.  
  1206. =item C<d_endgrent_r>
  1207.  
  1208. From F<d_endgrent_r.U>:
  1209.  
  1210. This variable conditionally defines the C<HAS_ENDGRENT_R> symbol,
  1211. which indicates to the C program that the endgrent_r()
  1212. routine is available.
  1213.  
  1214. =item C<d_endhent>
  1215.  
  1216. From F<d_endhent.U>:
  1217.  
  1218. This variable conditionally defines C<HAS_ENDHOSTENT> if endhostent() is
  1219. available to close whatever was being used for host queries.
  1220.  
  1221. =item C<d_endhostent_r>
  1222.  
  1223. From F<d_endhostent_r.U>:
  1224.  
  1225. This variable conditionally defines the C<HAS_ENDHOSTENT_R> symbol,
  1226. which indicates to the C program that the endhostent_r()
  1227. routine is available.
  1228.  
  1229. =item C<d_endnent>
  1230.  
  1231. From F<d_endnent.U>:
  1232.  
  1233. This variable conditionally defines C<HAS_ENDNETENT> if endnetent() is
  1234. available to close whatever was being used for network queries.
  1235.  
  1236. =item C<d_endnetent_r>
  1237.  
  1238. From F<d_endnetent_r.U>:
  1239.  
  1240. This variable conditionally defines the C<HAS_ENDNETENT_R> symbol,
  1241. which indicates to the C program that the endnetent_r()
  1242. routine is available.
  1243.  
  1244. =item C<d_endpent>
  1245.  
  1246. From F<d_endpent.U>:
  1247.  
  1248. This variable conditionally defines C<HAS_ENDPROTOENT> if endprotoent() is
  1249. available to close whatever was being used for protocol queries.
  1250.  
  1251. =item C<d_endprotoent_r>
  1252.  
  1253. From F<d_endprotoent_r.U>:
  1254.  
  1255. This variable conditionally defines the C<HAS_ENDPROTOENT_R> symbol,
  1256. which indicates to the C program that the endprotoent_r()
  1257. routine is available.
  1258.  
  1259. =item C<d_endpwent>
  1260.  
  1261. From F<d_endpwent.U>:
  1262.  
  1263. This variable conditionally defines the C<HAS_ENDPWENT> symbol, which
  1264. indicates to the C program that the endpwent() routine is available
  1265. for sequential access of the passwd database.
  1266.  
  1267. =item C<d_endpwent_r>
  1268.  
  1269. From F<d_endpwent_r.U>:
  1270.  
  1271. This variable conditionally defines the C<HAS_ENDPWENT_R> symbol,
  1272. which indicates to the C program that the endpwent_r()
  1273. routine is available.
  1274.  
  1275. =item C<d_endsent>
  1276.  
  1277. From F<d_endsent.U>:
  1278.  
  1279. This variable conditionally defines C<HAS_ENDSERVENT> if endservent() is
  1280. available to close whatever was being used for service queries.
  1281.  
  1282. =item C<d_endservent_r>
  1283.  
  1284. From F<d_endservent_r.U>:
  1285.  
  1286. This variable conditionally defines the C<HAS_ENDSERVENT_R> symbol,
  1287. which indicates to the C program that the endservent_r()
  1288. routine is available.
  1289.  
  1290. =item C<d_eofnblk>
  1291.  
  1292. From F<nblock_io.U>:
  1293.  
  1294. This variable conditionally defines C<EOF_NONBLOCK> if C<EOF> can be seen
  1295. when reading from a non-blocking I/O source.
  1296.  
  1297. =item C<d_eunice>
  1298.  
  1299. From F<Guess.U>:
  1300.  
  1301. This variable conditionally defines the symbols C<EUNICE> and C<VAX>, which
  1302. alerts the C program that it must deal with ideosyncracies of C<VMS>.
  1303.  
  1304. =item C<d_faststdio>
  1305.  
  1306. From F<d_faststdio.U>:
  1307.  
  1308. This variable conditionally defines the C<HAS_FAST_STDIO> symbol,
  1309. which indicates to the C program that the "fast stdio" is available
  1310. to manipulate the stdio buffers directly.
  1311.  
  1312. =item C<d_fchdir>
  1313.  
  1314. From F<d_fchdir.U>:
  1315.  
  1316. This variable conditionally defines the C<HAS_FCHDIR> symbol, which
  1317. indicates to the C program that the fchdir() routine is available.
  1318.  
  1319. =item C<d_fchmod>
  1320.  
  1321. From F<d_fchmod.U>:
  1322.  
  1323. This variable conditionally defines the C<HAS_FCHMOD> symbol, which
  1324. indicates to the C program that the fchmod() routine is available
  1325. to change mode of opened files.
  1326.  
  1327. =item C<d_fchown>
  1328.  
  1329. From F<d_fchown.U>:
  1330.  
  1331. This variable conditionally defines the C<HAS_FCHOWN> symbol, which
  1332. indicates to the C program that the fchown() routine is available
  1333. to change ownership of opened files.
  1334.  
  1335. =item C<d_fcntl>
  1336.  
  1337. From F<d_fcntl.U>:
  1338.  
  1339. This variable conditionally defines the C<HAS_FCNTL> symbol, and indicates
  1340. whether the fcntl() function exists
  1341.  
  1342. =item C<d_fcntl_can_lock>
  1343.  
  1344. From F<d_fcntl_can_lock.U>:
  1345.  
  1346. This variable conditionally defines the C<FCNTL_CAN_LOCK> symbol
  1347. and indicates whether file locking with fcntl() works.
  1348.  
  1349. =item C<d_fd_macros>
  1350.  
  1351. From F<d_fd_set.U>:
  1352.  
  1353. This variable contains the eventual value of the C<HAS_FD_MACROS> symbol,
  1354. which indicates if your C compiler knows about the macros which
  1355. manipulate an fd_set.
  1356.  
  1357. =item C<d_fd_set>
  1358.  
  1359. From F<d_fd_set.U>:
  1360.  
  1361. This variable contains the eventual value of the C<HAS_FD_SET> symbol,
  1362. which indicates if your C compiler knows about the fd_set typedef.
  1363.  
  1364. =item C<d_fds_bits>
  1365.  
  1366. From F<d_fd_set.U>:
  1367.  
  1368. This variable contains the eventual value of the C<HAS_FDS_BITS> symbol,
  1369. which indicates if your fd_set typedef contains the fds_bits member.
  1370. If you have an fd_set typedef, but the dweebs who installed it did
  1371. a half-fast job and neglected to provide the macros to manipulate
  1372. an fd_set, C<HAS_FDS_BITS> will let us know how to fix the gaffe.
  1373.  
  1374. =item C<d_fgetpos>
  1375.  
  1376. From F<d_fgetpos.U>:
  1377.  
  1378. This variable conditionally defines C<HAS_FGETPOS> if fgetpos() is
  1379. available to get the file position indicator.
  1380.  
  1381. =item C<d_finite>
  1382.  
  1383. From F<d_finite.U>:
  1384.  
  1385. This variable conditionally defines the C<HAS_FINITE> symbol, which
  1386. indicates to the C program that the finite() routine is available.
  1387.  
  1388. =item C<d_finitel>
  1389.  
  1390. From F<d_finitel.U>:
  1391.  
  1392. This variable conditionally defines the C<HAS_FINITEL> symbol, which
  1393. indicates to the C program that the finitel() routine is available.
  1394.  
  1395. =item C<d_flexfnam>
  1396.  
  1397. From F<d_flexfnam.U>:
  1398.  
  1399. This variable conditionally defines the C<FLEXFILENAMES> symbol, which
  1400. indicates that the system supports filenames longer than 14 characters.
  1401.  
  1402. =item C<d_flock>
  1403.  
  1404. From F<d_flock.U>:
  1405.  
  1406. This variable conditionally defines C<HAS_FLOCK> if flock() is
  1407. available to do file locking.
  1408.  
  1409. =item C<d_flockproto>
  1410.  
  1411. From F<d_flockproto.U>:
  1412.  
  1413. This variable conditionally defines the C<HAS_FLOCK_PROTO> symbol,
  1414. which indicates to the C program that the system provides
  1415. a prototype for the flock() function.  Otherwise, it is
  1416. up to the program to supply one.
  1417.  
  1418. =item C<d_fork>
  1419.  
  1420. From F<d_fork.U>:
  1421.  
  1422. This variable conditionally defines the C<HAS_FORK> symbol, which
  1423. indicates to the C program that the fork() routine is available.
  1424.  
  1425. =item C<d_fp_class>
  1426.  
  1427. From F<d_fp_class.U>:
  1428.  
  1429. This variable conditionally defines the C<HAS_FP_CLASS> symbol, which
  1430. indicates to the C program that the fp_class() routine is available.
  1431.  
  1432. =item C<d_fpathconf>
  1433.  
  1434. From F<d_pathconf.U>:
  1435.  
  1436. This variable conditionally defines the C<HAS_FPATHCONF> symbol, which
  1437. indicates to the C program that the pathconf() routine is available
  1438. to determine file-system related limits and options associated
  1439. with a given open file descriptor.
  1440.  
  1441. =item C<d_fpclass>
  1442.  
  1443. From F<d_fpclass.U>:
  1444.  
  1445. This variable conditionally defines the C<HAS_FPCLASS> symbol, which
  1446. indicates to the C program that the fpclass() routine is available.
  1447.  
  1448. =item C<d_fpclassify>
  1449.  
  1450. From F<d_fpclassify.U>:
  1451.  
  1452. This variable conditionally defines the C<HAS_FPCLASSIFY> symbol, which
  1453. indicates to the C program that the fpclassify() routine is available.
  1454.  
  1455. =item C<d_fpclassl>
  1456.  
  1457. From F<d_fpclassl.U>:
  1458.  
  1459. This variable conditionally defines the C<HAS_FPCLASSL> symbol, which
  1460. indicates to the C program that the fpclassl() routine is available.
  1461.  
  1462. =item C<d_fpos64_t>
  1463.  
  1464. From F<d_fpos64_t.U>:
  1465.  
  1466. This symbol will be defined if the C compiler supports fpos64_t.
  1467.  
  1468. =item C<d_frexpl>
  1469.  
  1470. From F<d_frexpl.U>:
  1471.  
  1472. This variable conditionally defines the C<HAS_FREXPL> symbol, which
  1473. indicates to the C program that the frexpl() routine is available.
  1474.  
  1475. =item C<d_fs_data_s>
  1476.  
  1477. From F<d_fs_data_s.U>:
  1478.  
  1479. This variable conditionally defines the C<HAS_STRUCT_FS_DATA> symbol,
  1480. which indicates that the struct fs_data is supported.
  1481.  
  1482. =item C<d_fseeko>
  1483.  
  1484. From F<d_fseeko.U>:
  1485.  
  1486. This variable conditionally defines the C<HAS_FSEEKO> symbol, which
  1487. indicates to the C program that the fseeko() routine is available.
  1488.  
  1489. =item C<d_fsetpos>
  1490.  
  1491. From F<d_fsetpos.U>:
  1492.  
  1493. This variable conditionally defines C<HAS_FSETPOS> if fsetpos() is
  1494. available to set the file position indicator.
  1495.  
  1496. =item C<d_fstatfs>
  1497.  
  1498. From F<d_fstatfs.U>:
  1499.  
  1500. This variable conditionally defines the C<HAS_FSTATFS> symbol, which
  1501. indicates to the C program that the fstatfs() routine is available.
  1502.  
  1503. =item C<d_fstatvfs>
  1504.  
  1505. From F<d_statvfs.U>:
  1506.  
  1507. This variable conditionally defines the C<HAS_FSTATVFS> symbol, which
  1508. indicates to the C program that the fstatvfs() routine is available.
  1509.  
  1510. =item C<d_fsync>
  1511.  
  1512. From F<d_fsync.U>:
  1513.  
  1514. This variable conditionally defines the C<HAS_FSYNC> symbol, which
  1515. indicates to the C program that the fsync() routine is available.
  1516.  
  1517. =item C<d_ftello>
  1518.  
  1519. From F<d_ftello.U>:
  1520.  
  1521. This variable conditionally defines the C<HAS_FTELLO> symbol, which
  1522. indicates to the C program that the ftello() routine is available.
  1523.  
  1524. =item C<d_ftime>
  1525.  
  1526. From F<d_ftime.U>:
  1527.  
  1528. This variable conditionally defines the C<HAS_FTIME> symbol, which indicates
  1529. that the ftime() routine exists.  The ftime() routine is basically
  1530. a sub-second accuracy clock.
  1531.  
  1532. =item C<d_futimes>
  1533.  
  1534. From F<d_futimes.U>:
  1535.  
  1536. This variable conditionally defines the C<HAS_FUTIMES> symbol, which
  1537. indicates to the C program that the futimes() routine is available.
  1538.  
  1539. =item C<d_Gconvert>
  1540.  
  1541. From F<d_gconvert.U>:
  1542.  
  1543. This variable holds what Gconvert is defined as to convert
  1544. floating point numbers into strings.  By default, Configure
  1545. sets C<this> macro to use the first of gconvert, gcvt, or sprintf
  1546. that pass sprintf-%g-like behaviour tests.  If perl is using
  1547. long doubles, the macro uses the first of the following
  1548. functions that pass Configure's tests: qgcvt, sprintf (if
  1549. Configure knows how to make sprintf format long doubles--see
  1550. sPRIgldbl), gconvert, gcvt, and sprintf (casting to double).
  1551. The gconvert_preference and gconvert_ld_preference variables
  1552. can be used to alter Configure's preferences, for doubles and
  1553. long doubles, respectively.  If present, they contain a
  1554. space-separated list of one or more of the above function
  1555. names in the order they should be tried.
  1556.  
  1557. d_Gconvert may be set to override Configure with a platform-
  1558. specific function.  If this function expects a double, a
  1559. different value may need to be set by the F<uselongdouble.cbu>
  1560. call-back unit so that long doubles can be formatted without
  1561. loss of precision.
  1562.  
  1563. =item C<d_gdbm_ndbm_h_uses_prototypes>
  1564.  
  1565. From F<i_ndbm.U>:
  1566.  
  1567. This variable conditionally defines the C<NDBM_H_USES_PROTOTYPES> symbol,
  1568. which indicates that the gdbm-F<ndbm.h> include file uses real C<ANSI> C
  1569. prototypes instead of K&R style function declarations. K&R style
  1570. declarations are unsupported in C++, so the include file requires
  1571. special handling when using a C++ compiler and this variable is
  1572. undefined. Consult the different d_*ndbm_h_uses_prototypes variables
  1573. to get the same information for alternative F<ndbm.h> include files.
  1574.  
  1575. =item C<d_gdbmndbm_h_uses_prototypes>
  1576.  
  1577. From F<i_ndbm.U>:
  1578.  
  1579. This variable conditionally defines the C<NDBM_H_USES_PROTOTYPES> symbol,
  1580. which indicates that the F<gdbm/ndbm.h> include file uses real C<ANSI> C
  1581. prototypes instead of K&R style function declarations. K&R style
  1582. declarations are unsupported in C++, so the include file requires
  1583. special handling when using a C++ compiler and this variable is
  1584. undefined. Consult the different d_*ndbm_h_uses_prototypes variables
  1585. to get the same information for alternative F<ndbm.h> include files.
  1586.  
  1587. =item C<d_getaddrinfo>
  1588.  
  1589. From F<d_getaddrinfo.U>:
  1590.  
  1591. This variable conditionally defines the C<HAS_GETADDRINFO> symbol,
  1592. which indicates to the C program that the getaddrinfo() function
  1593. is available.
  1594.  
  1595. =item C<d_getcwd>
  1596.  
  1597. From F<d_getcwd.U>:
  1598.  
  1599. This variable conditionally defines the C<HAS_GETCWD> symbol, which
  1600. indicates to the C program that the getcwd() routine is available
  1601. to get the current working directory.
  1602.  
  1603. =item C<d_getespwnam>
  1604.  
  1605. From F<d_getespwnam.U>:
  1606.  
  1607. This variable conditionally defines C<HAS_GETESPWNAM> if getespwnam() is
  1608. available to retrieve enchanced (shadow) password entries by name.
  1609.  
  1610. =item C<d_getfsstat>
  1611.  
  1612. From F<d_getfsstat.U>:
  1613.  
  1614. This variable conditionally defines the C<HAS_GETFSSTAT> symbol, which
  1615. indicates to the C program that the getfsstat() routine is available.
  1616.  
  1617. =item C<d_getgrent>
  1618.  
  1619. From F<d_getgrent.U>:
  1620.  
  1621. This variable conditionally defines the C<HAS_GETGRENT> symbol, which
  1622. indicates to the C program that the getgrent() routine is available
  1623. for sequential access of the group database.
  1624.  
  1625. =item C<d_getgrent_r>
  1626.  
  1627. From F<d_getgrent_r.U>:
  1628.  
  1629. This variable conditionally defines the C<HAS_GETGRENT_R> symbol,
  1630. which indicates to the C program that the getgrent_r()
  1631. routine is available.
  1632.  
  1633. =item C<d_getgrgid_r>
  1634.  
  1635. From F<d_getgrgid_r.U>:
  1636.  
  1637. This variable conditionally defines the C<HAS_GETGRGID_R> symbol,
  1638. which indicates to the C program that the getgrgid_r()
  1639. routine is available.
  1640.  
  1641. =item C<d_getgrnam_r>
  1642.  
  1643. From F<d_getgrnam_r.U>:
  1644.  
  1645. This variable conditionally defines the C<HAS_GETGRNAM_R> symbol,
  1646. which indicates to the C program that the getgrnam_r()
  1647. routine is available.
  1648.  
  1649. =item C<d_getgrps>
  1650.  
  1651. From F<d_getgrps.U>:
  1652.  
  1653. This variable conditionally defines the C<HAS_GETGROUPS> symbol, which
  1654. indicates to the C program that the getgroups() routine is available
  1655. to get the list of process groups.
  1656.  
  1657. =item C<d_gethbyaddr>
  1658.  
  1659. From F<d_gethbyad.U>:
  1660.  
  1661. This variable conditionally defines the C<HAS_GETHOSTBYADDR> symbol, which
  1662. indicates to the C program that the gethostbyaddr() routine is available
  1663. to look up hosts by their C<IP> addresses.
  1664.  
  1665. =item C<d_gethbyname>
  1666.  
  1667. From F<d_gethbynm.U>:
  1668.  
  1669. This variable conditionally defines the C<HAS_GETHOSTBYNAME> symbol, which
  1670. indicates to the C program that the gethostbyname() routine is available
  1671. to look up host names in some data base or other.
  1672.  
  1673. =item C<d_gethent>
  1674.  
  1675. From F<d_gethent.U>:
  1676.  
  1677. This variable conditionally defines C<HAS_GETHOSTENT> if gethostent() is
  1678. available to look up host names in some data base or another.
  1679.  
  1680. =item C<d_gethname>
  1681.  
  1682. From F<d_gethname.U>:
  1683.  
  1684. This variable conditionally defines the C<HAS_GETHOSTNAME> symbol, which
  1685. indicates to the C program that the gethostname() routine may be
  1686. used to derive the host name.
  1687.  
  1688. =item C<d_gethostbyaddr_r>
  1689.  
  1690. From F<d_gethostbyaddr_r.U>:
  1691.  
  1692. This variable conditionally defines the C<HAS_GETHOSTBYADDR_R> symbol,
  1693. which indicates to the C program that the gethostbyaddr_r()
  1694. routine is available.
  1695.  
  1696. =item C<d_gethostbyname_r>
  1697.  
  1698. From F<d_gethostbyname_r.U>:
  1699.  
  1700. This variable conditionally defines the C<HAS_GETHOSTBYNAME_R> symbol,
  1701. which indicates to the C program that the gethostbyname_r()
  1702. routine is available.
  1703.  
  1704. =item C<d_gethostent_r>
  1705.  
  1706. From F<d_gethostent_r.U>:
  1707.  
  1708. This variable conditionally defines the C<HAS_GETHOSTENT_R> symbol,
  1709. which indicates to the C program that the gethostent_r()
  1710. routine is available.
  1711.  
  1712. =item C<d_gethostprotos>
  1713.  
  1714. From F<d_gethostprotos.U>:
  1715.  
  1716. This variable conditionally defines the C<HAS_GETHOST_PROTOS> symbol,
  1717. which indicates to the C program that <netdb.h> supplies
  1718. prototypes for the various gethost*() functions.
  1719. See also F<netdbtype.U> for probing for various netdb types.
  1720.  
  1721. =item C<d_getitimer>
  1722.  
  1723. From F<d_getitimer.U>:
  1724.  
  1725. This variable conditionally defines the C<HAS_GETITIMER> symbol, which
  1726. indicates to the C program that the getitimer() routine is available.
  1727.  
  1728. =item C<d_getlogin>
  1729.  
  1730. From F<d_getlogin.U>:
  1731.  
  1732. This variable conditionally defines the C<HAS_GETLOGIN> symbol, which
  1733. indicates to the C program that the getlogin() routine is available
  1734. to get the login name.
  1735.  
  1736. =item C<d_getlogin_r>
  1737.  
  1738. From F<d_getlogin_r.U>:
  1739.  
  1740. This variable conditionally defines the C<HAS_GETLOGIN_R> symbol,
  1741. which indicates to the C program that the getlogin_r()
  1742. routine is available.
  1743.  
  1744. =item C<d_getmnt>
  1745.  
  1746. From F<d_getmnt.U>:
  1747.  
  1748. This variable conditionally defines the C<HAS_GETMNT> symbol, which
  1749. indicates to the C program that the getmnt() routine is available
  1750. to retrieve one or more mount info blocks by filename.
  1751.  
  1752. =item C<d_getmntent>
  1753.  
  1754. From F<d_getmntent.U>:
  1755.  
  1756. This variable conditionally defines the C<HAS_GETMNTENT> symbol, which
  1757. indicates to the C program that the getmntent() routine is available
  1758. to iterate through mounted files to get their mount info.
  1759.  
  1760. =item C<d_getnameinfo>
  1761.  
  1762. From F<d_getnameinfo.U>:
  1763.  
  1764. This variable conditionally defines the C<HAS_GETNAMEINFO> symbol,
  1765. which indicates to the C program that the getnameinfo() function
  1766. is available.
  1767.  
  1768. =item C<d_getnbyaddr>
  1769.  
  1770. From F<d_getnbyad.U>:
  1771.  
  1772. This variable conditionally defines the C<HAS_GETNETBYADDR> symbol, which
  1773. indicates to the C program that the getnetbyaddr() routine is available
  1774. to look up networks by their C<IP> addresses.
  1775.  
  1776. =item C<d_getnbyname>
  1777.  
  1778. From F<d_getnbynm.U>:
  1779.  
  1780. This variable conditionally defines the C<HAS_GETNETBYNAME> symbol, which
  1781. indicates to the C program that the getnetbyname() routine is available
  1782. to look up networks by their names.
  1783.  
  1784. =item C<d_getnent>
  1785.  
  1786. From F<d_getnent.U>:
  1787.  
  1788. This variable conditionally defines C<HAS_GETNETENT> if getnetent() is
  1789. available to look up network names in some data base or another.
  1790.  
  1791. =item C<d_getnetbyaddr_r>
  1792.  
  1793. From F<d_getnetbyaddr_r.U>:
  1794.  
  1795. This variable conditionally defines the C<HAS_GETNETBYADDR_R> symbol,
  1796. which indicates to the C program that the getnetbyaddr_r()
  1797. routine is available.
  1798.  
  1799. =item C<d_getnetbyname_r>
  1800.  
  1801. From F<d_getnetbyname_r.U>:
  1802.  
  1803. This variable conditionally defines the C<HAS_GETNETBYNAME_R> symbol,
  1804. which indicates to the C program that the getnetbyname_r()
  1805. routine is available.
  1806.  
  1807. =item C<d_getnetent_r>
  1808.  
  1809. From F<d_getnetent_r.U>:
  1810.  
  1811. This variable conditionally defines the C<HAS_GETNETENT_R> symbol,
  1812. which indicates to the C program that the getnetent_r()
  1813. routine is available.
  1814.  
  1815. =item C<d_getnetprotos>
  1816.  
  1817. From F<d_getnetprotos.U>:
  1818.  
  1819. This variable conditionally defines the C<HAS_GETNET_PROTOS> symbol,
  1820. which indicates to the C program that <netdb.h> supplies
  1821. prototypes for the various getnet*() functions.
  1822. See also F<netdbtype.U> for probing for various netdb types.
  1823.  
  1824. =item C<d_getpagsz>
  1825.  
  1826. From F<d_getpagsz.U>:
  1827.  
  1828. This variable conditionally defines C<HAS_GETPAGESIZE> if getpagesize()
  1829. is available to get the system page size.
  1830.  
  1831. =item C<d_getpbyname>
  1832.  
  1833. From F<d_getprotby.U>:
  1834.  
  1835. This variable conditionally defines the C<HAS_GETPROTOBYNAME>
  1836. symbol, which indicates to the C program that the
  1837. getprotobyname() routine is available to look up protocols
  1838. by their name.
  1839.  
  1840. =item C<d_getpbynumber>
  1841.  
  1842. From F<d_getprotby.U>:
  1843.  
  1844. This variable conditionally defines the C<HAS_GETPROTOBYNUMBER>
  1845. symbol, which indicates to the C program that the
  1846. getprotobynumber() routine is available to look up protocols
  1847. by their number.
  1848.  
  1849. =item C<d_getpent>
  1850.  
  1851. From F<d_getpent.U>:
  1852.  
  1853. This variable conditionally defines C<HAS_GETPROTOENT> if getprotoent() is
  1854. available to look up protocols in some data base or another.
  1855.  
  1856. =item C<d_getpgid>
  1857.  
  1858. From F<d_getpgid.U>:
  1859.  
  1860. This variable conditionally defines the C<HAS_GETPGID> symbol, which
  1861. indicates to the C program that the getpgid(pid) function
  1862. is available to get the process group id.
  1863.  
  1864. =item C<d_getpgrp>
  1865.  
  1866. From F<d_getpgrp.U>:
  1867.  
  1868. This variable conditionally defines C<HAS_GETPGRP> if getpgrp() is
  1869. available to get the current process group.
  1870.  
  1871. =item C<d_getpgrp2>
  1872.  
  1873. From F<d_getpgrp2.U>:
  1874.  
  1875. This variable conditionally defines the HAS_GETPGRP2 symbol, which
  1876. indicates to the C program that the getpgrp2() (as in F<DG/C<UX>>) routine
  1877. is available to get the current process group.
  1878.  
  1879. =item C<d_getppid>
  1880.  
  1881. From F<d_getppid.U>:
  1882.  
  1883. This variable conditionally defines the C<HAS_GETPPID> symbol, which
  1884. indicates to the C program that the getppid() routine is available
  1885. to get the parent process C<ID>.
  1886.  
  1887. =item C<d_getprior>
  1888.  
  1889. From F<d_getprior.U>:
  1890.  
  1891. This variable conditionally defines C<HAS_GETPRIORITY> if getpriority()
  1892. is available to get a process's priority.
  1893.  
  1894. =item C<d_getprotobyname_r>
  1895.  
  1896. From F<d_getprotobyname_r.U>:
  1897.  
  1898. This variable conditionally defines the C<HAS_GETPROTOBYNAME_R> symbol,
  1899. which indicates to the C program that the getprotobyname_r()
  1900. routine is available.
  1901.  
  1902. =item C<d_getprotobynumber_r>
  1903.  
  1904. From F<d_getprotobynumber_r.U>:
  1905.  
  1906. This variable conditionally defines the C<HAS_GETPROTOBYNUMBER_R> symbol,
  1907. which indicates to the C program that the getprotobynumber_r()
  1908. routine is available.
  1909.  
  1910. =item C<d_getprotoent_r>
  1911.  
  1912. From F<d_getprotoent_r.U>:
  1913.  
  1914. This variable conditionally defines the C<HAS_GETPROTOENT_R> symbol,
  1915. which indicates to the C program that the getprotoent_r()
  1916. routine is available.
  1917.  
  1918. =item C<d_getprotoprotos>
  1919.  
  1920. From F<d_getprotoprotos.U>:
  1921.  
  1922. This variable conditionally defines the C<HAS_GETPROTO_PROTOS> symbol,
  1923. which indicates to the C program that <netdb.h> supplies
  1924. prototypes for the various getproto*() functions.
  1925. See also F<netdbtype.U> for probing for various netdb types.
  1926.  
  1927. =item C<d_getprpwnam>
  1928.  
  1929. From F<d_getprpwnam.U>:
  1930.  
  1931. This variable conditionally defines C<HAS_GETPRPWNAM> if getprpwnam() is
  1932. available to retrieve protected (shadow) password entries by name.
  1933.  
  1934. =item C<d_getpwent>
  1935.  
  1936. From F<d_getpwent.U>:
  1937.  
  1938. This variable conditionally defines the C<HAS_GETPWENT> symbol, which
  1939. indicates to the C program that the getpwent() routine is available
  1940. for sequential access of the passwd database.
  1941.  
  1942. =item C<d_getpwent_r>
  1943.  
  1944. From F<d_getpwent_r.U>:
  1945.  
  1946. This variable conditionally defines the C<HAS_GETPWENT_R> symbol,
  1947. which indicates to the C program that the getpwent_r()
  1948. routine is available.
  1949.  
  1950. =item C<d_getpwnam_r>
  1951.  
  1952. From F<d_getpwnam_r.U>:
  1953.  
  1954. This variable conditionally defines the C<HAS_GETPWNAM_R> symbol,
  1955. which indicates to the C program that the getpwnam_r()
  1956. routine is available.
  1957.  
  1958. =item C<d_getpwuid_r>
  1959.  
  1960. From F<d_getpwuid_r.U>:
  1961.  
  1962. This variable conditionally defines the C<HAS_GETPWUID_R> symbol,
  1963. which indicates to the C program that the getpwuid_r()
  1964. routine is available.
  1965.  
  1966. =item C<d_getsbyname>
  1967.  
  1968. From F<d_getsrvby.U>:
  1969.  
  1970. This variable conditionally defines the C<HAS_GETSERVBYNAME>
  1971. symbol, which indicates to the C program that the
  1972. getservbyname() routine is available to look up services
  1973. by their name.
  1974.  
  1975. =item C<d_getsbyport>
  1976.  
  1977. From F<d_getsrvby.U>:
  1978.  
  1979. This variable conditionally defines the C<HAS_GETSERVBYPORT>
  1980. symbol, which indicates to the C program that the
  1981. getservbyport() routine is available to look up services
  1982. by their port.
  1983.  
  1984. =item C<d_getsent>
  1985.  
  1986. From F<d_getsent.U>:
  1987.  
  1988. This variable conditionally defines C<HAS_GETSERVENT> if getservent() is
  1989. available to look up network services in some data base or another.
  1990.  
  1991. =item C<d_getservbyname_r>
  1992.  
  1993. From F<d_getservbyname_r.U>:
  1994.  
  1995. This variable conditionally defines the C<HAS_GETSERVBYNAME_R> symbol,
  1996. which indicates to the C program that the getservbyname_r()
  1997. routine is available.
  1998.  
  1999. =item C<d_getservbyport_r>
  2000.  
  2001. From F<d_getservbyport_r.U>:
  2002.  
  2003. This variable conditionally defines the C<HAS_GETSERVBYPORT_R> symbol,
  2004. which indicates to the C program that the getservbyport_r()
  2005. routine is available.
  2006.  
  2007. =item C<d_getservent_r>
  2008.  
  2009. From F<d_getservent_r.U>:
  2010.  
  2011. This variable conditionally defines the C<HAS_GETSERVENT_R> symbol,
  2012. which indicates to the C program that the getservent_r()
  2013. routine is available.
  2014.  
  2015. =item C<d_getservprotos>
  2016.  
  2017. From F<d_getservprotos.U>:
  2018.  
  2019. This variable conditionally defines the C<HAS_GETSERV_PROTOS> symbol,
  2020. which indicates to the C program that <netdb.h> supplies
  2021. prototypes for the various getserv*() functions.
  2022. See also F<netdbtype.U> for probing for various netdb types.
  2023.  
  2024. =item C<d_getspnam>
  2025.  
  2026. From F<d_getspnam.U>:
  2027.  
  2028. This variable conditionally defines C<HAS_GETSPNAM> if getspnam() is
  2029. available to retrieve SysV shadow password entries by name.
  2030.  
  2031. =item C<d_getspnam_r>
  2032.  
  2033. From F<d_getspnam_r.U>:
  2034.  
  2035. This variable conditionally defines the C<HAS_GETSPNAM_R> symbol,
  2036. which indicates to the C program that the getspnam_r()
  2037. routine is available.
  2038.  
  2039. =item C<d_gettimeod>
  2040.  
  2041. From F<d_ftime.U>:
  2042.  
  2043. This variable conditionally defines the C<HAS_GETTIMEOFDAY> symbol, which
  2044. indicates that the gettimeofday() system call exists (to obtain a
  2045. sub-second accuracy clock). You should probably include <sys/resource.h>.
  2046.  
  2047. =item C<d_gmtime64>
  2048.  
  2049. From F<d_timefuncs64.U>:
  2050.  
  2051. This variable conditionally defines the HAS_GMTIME64 symbol, which
  2052. indicates to the C program that the gmtime64 () routine is available.
  2053.  
  2054. =item C<d_gmtime_r>
  2055.  
  2056. From F<d_gmtime_r.U>:
  2057.  
  2058. This variable conditionally defines the C<HAS_GMTIME_R> symbol,
  2059. which indicates to the C program that the gmtime_r()
  2060. routine is available.
  2061.  
  2062. =item C<d_gnulibc>
  2063.  
  2064. From F<d_gnulibc.U>:
  2065.  
  2066. Defined if we're dealing with the C<GNU> C Library.
  2067.  
  2068. =item C<d_grpasswd>
  2069.  
  2070. From F<i_grp.U>:
  2071.  
  2072. This variable conditionally defines C<GRPASSWD>, which indicates
  2073. that struct group in <grp.h> contains gr_passwd.
  2074.  
  2075. =item C<d_hasmntopt>
  2076.  
  2077. From F<d_hasmntopt.U>:
  2078.  
  2079. This variable conditionally defines the C<HAS_HASMNTOPT> symbol, which
  2080. indicates to the C program that the hasmntopt() routine is available
  2081. to query the mount options of file systems.
  2082.  
  2083. =item C<d_htonl>
  2084.  
  2085. From F<d_htonl.U>:
  2086.  
  2087. This variable conditionally defines C<HAS_HTONL> if htonl() and its
  2088. friends are available to do network order byte swapping.
  2089.  
  2090. =item C<d_ilogbl>
  2091.  
  2092. From F<d_ilogbl.U>:
  2093.  
  2094. This variable conditionally defines the C<HAS_ILOGBL> symbol, which
  2095. indicates to the C program that the ilogbl() routine is available.
  2096. If scalbnl is also present we can emulate frexpl.
  2097.  
  2098. =item C<d_inc_version_list>
  2099.  
  2100. From F<inc_version_list.U>:
  2101.  
  2102. This variable conditionally defines C<PERL_INC_VERSION_LIST>.
  2103. It is set to undef when C<PERL_INC_VERSION_LIST> is empty.
  2104.  
  2105. =item C<d_index>
  2106.  
  2107. From F<d_strchr.U>:
  2108.  
  2109. This variable conditionally defines C<HAS_INDEX> if index() and
  2110. rindex() are available for string searching.
  2111.  
  2112. =item C<d_inetaton>
  2113.  
  2114. From F<d_inetaton.U>:
  2115.  
  2116. This variable conditionally defines the C<HAS_INET_ATON> symbol, which
  2117. indicates to the C program that the inet_aton() function is available
  2118. to parse C<IP> address C<dotted-quad> strings.
  2119.  
  2120. =item C<d_inetntop>
  2121.  
  2122. From F<d_inetntop.U>:
  2123.  
  2124. This variable conditionally defines the C<HAS_INETNTOP> symbol,
  2125. which indicates to the C program that the inet_ntop() function
  2126. is available.
  2127.  
  2128. =item C<d_inetpton>
  2129.  
  2130. From F<d_inetpton.U>:
  2131.  
  2132. This variable conditionally defines the C<HAS_INETPTON> symbol,
  2133. which indicates to the C program that the inet_pton() function
  2134. is available.
  2135.  
  2136. =item C<d_int64_t>
  2137.  
  2138. From F<d_int64_t.U>:
  2139.  
  2140. This symbol will be defined if the C compiler supports int64_t.
  2141.  
  2142. =item C<d_isascii>
  2143.  
  2144. From F<d_isascii.U>:
  2145.  
  2146. This variable conditionally defines the C<HAS_ISASCII> constant,
  2147. which indicates to the C program that isascii() is available.
  2148.  
  2149. =item C<d_isfinite>
  2150.  
  2151. From F<d_isfinite.U>:
  2152.  
  2153. This variable conditionally defines the C<HAS_ISFINITE> symbol, which
  2154. indicates to the C program that the isfinite() routine is available.
  2155.  
  2156. =item C<d_isinf>
  2157.  
  2158. From F<d_isinf.U>:
  2159.  
  2160. This variable conditionally defines the C<HAS_ISINF> symbol, which
  2161. indicates to the C program that the isinf() routine is available.
  2162.  
  2163. =item C<d_isnan>
  2164.  
  2165. From F<d_isnan.U>:
  2166.  
  2167. This variable conditionally defines the C<HAS_ISNAN> symbol, which
  2168. indicates to the C program that the isnan() routine is available.
  2169.  
  2170. =item C<d_isnanl>
  2171.  
  2172. From F<d_isnanl.U>:
  2173.  
  2174. This variable conditionally defines the C<HAS_ISNANL> symbol, which
  2175. indicates to the C program that the isnanl() routine is available.
  2176.  
  2177. =item C<d_killpg>
  2178.  
  2179. From F<d_killpg.U>:
  2180.  
  2181. This variable conditionally defines the C<HAS_KILLPG> symbol, which
  2182. indicates to the C program that the killpg() routine is available
  2183. to kill process groups.
  2184.  
  2185. =item C<d_lchown>
  2186.  
  2187. From F<d_lchown.U>:
  2188.  
  2189. This variable conditionally defines the C<HAS_LCHOWN> symbol, which
  2190. indicates to the C program that the lchown() routine is available
  2191. to operate on a symbolic link (instead of following the link).
  2192.  
  2193. =item C<d_ldbl_dig>
  2194.  
  2195. From F<d_ldbl_dig.U>:
  2196.  
  2197. This variable conditionally defines d_ldbl_dig if this system's
  2198. header files provide C<LDBL_DIG>, which is the number of significant
  2199. digits in a long double precision number.
  2200.  
  2201. =item C<d_libm_lib_version>
  2202.  
  2203. From F<d_libm_lib_version.U>:
  2204.  
  2205. This variable conditionally defines the C<LIBM_LIB_VERSION> symbol,
  2206. which indicates to the C program that F<math.h> defines C<_LIB_VERSION>
  2207. being available in libm
  2208.  
  2209. =item C<d_link>
  2210.  
  2211. From F<d_link.U>:
  2212.  
  2213. This variable conditionally defines C<HAS_LINK> if link() is
  2214. available to create hard links.
  2215.  
  2216. =item C<d_localtime64>
  2217.  
  2218. From F<d_timefuncs64.U>:
  2219.  
  2220. This variable conditionally defines the HAS_LOCALTIME64 symbol, which
  2221. indicates to the C program that the localtime64 () routine is available.
  2222.  
  2223. =item C<d_localtime_r>
  2224.  
  2225. From F<d_localtime_r.U>:
  2226.  
  2227. This variable conditionally defines the C<HAS_LOCALTIME_R> symbol,
  2228. which indicates to the C program that the localtime_r()
  2229. routine is available.
  2230.  
  2231. =item C<d_localtime_r_needs_tzset>
  2232.  
  2233. From F<d_localtime_r.U>:
  2234.  
  2235. This variable conditionally defines the C<LOCALTIME_R_NEEDS_TZSET>
  2236. symbol, which makes us call tzset before localtime_r()
  2237.  
  2238. =item C<d_locconv>
  2239.  
  2240. From F<d_locconv.U>:
  2241.  
  2242. This variable conditionally defines C<HAS_LOCALECONV> if localeconv() is
  2243. available for numeric and monetary formatting conventions.
  2244.  
  2245. =item C<d_lockf>
  2246.  
  2247. From F<d_lockf.U>:
  2248.  
  2249. This variable conditionally defines C<HAS_LOCKF> if lockf() is
  2250. available to do file locking.
  2251.  
  2252. =item C<d_longdbl>
  2253.  
  2254. From F<d_longdbl.U>:
  2255.  
  2256. This variable conditionally defines C<HAS_LONG_DOUBLE> if
  2257. the long double type is supported.
  2258.  
  2259. =item C<d_longlong>
  2260.  
  2261. From F<d_longlong.U>:
  2262.  
  2263. This variable conditionally defines C<HAS_LONG_LONG> if
  2264. the long long type is supported.
  2265.  
  2266. =item C<d_lseekproto>
  2267.  
  2268. From F<d_lseekproto.U>:
  2269.  
  2270. This variable conditionally defines the C<HAS_LSEEK_PROTO> symbol,
  2271. which indicates to the C program that the system provides
  2272. a prototype for the lseek() function.  Otherwise, it is
  2273. up to the program to supply one.
  2274.  
  2275. =item C<d_lstat>
  2276.  
  2277. From F<d_lstat.U>:
  2278.  
  2279. This variable conditionally defines C<HAS_LSTAT> if lstat() is
  2280. available to do file stats on symbolic links.
  2281.  
  2282. =item C<d_madvise>
  2283.  
  2284. From F<d_madvise.U>:
  2285.  
  2286. This variable conditionally defines C<HAS_MADVISE> if madvise() is
  2287. available to map a file into memory.
  2288.  
  2289. =item C<d_malloc_good_size>
  2290.  
  2291. From F<d_malloc_size.U>:
  2292.  
  2293. This symbol, if defined, indicates that the malloc_good_size
  2294. routine is available for use.
  2295.  
  2296. =item C<d_malloc_size>
  2297.  
  2298. From F<d_malloc_size.U>:
  2299.  
  2300. This symbol, if defined, indicates that the malloc_size
  2301. routine is available for use.
  2302.  
  2303. =item C<d_mblen>
  2304.  
  2305. From F<d_mblen.U>:
  2306.  
  2307. This variable conditionally defines the C<HAS_MBLEN> symbol, which
  2308. indicates to the C program that the mblen() routine is available
  2309. to find the number of bytes in a multibye character.
  2310.  
  2311. =item C<d_mbstowcs>
  2312.  
  2313. From F<d_mbstowcs.U>:
  2314.  
  2315. This variable conditionally defines the C<HAS_MBSTOWCS> symbol, which
  2316. indicates to the C program that the mbstowcs() routine is available
  2317. to convert a multibyte string into a wide character string.
  2318.  
  2319. =item C<d_mbtowc>
  2320.  
  2321. From F<d_mbtowc.U>:
  2322.  
  2323. This variable conditionally defines the C<HAS_MBTOWC> symbol, which
  2324. indicates to the C program that the mbtowc() routine is available
  2325. to convert multibyte to a wide character.
  2326.  
  2327. =item C<d_memchr>
  2328.  
  2329. From F<d_memchr.U>:
  2330.  
  2331. This variable conditionally defines the C<HAS_MEMCHR> symbol, which
  2332. indicates to the C program that the memchr() routine is available
  2333. to locate characters within a C string.
  2334.  
  2335. =item C<d_memcmp>
  2336.  
  2337. From F<d_memcmp.U>:
  2338.  
  2339. This variable conditionally defines the C<HAS_MEMCMP> symbol, which
  2340. indicates to the C program that the memcmp() routine is available
  2341. to compare blocks of memory.
  2342.  
  2343. =item C<d_memcpy>
  2344.  
  2345. From F<d_memcpy.U>:
  2346.  
  2347. This variable conditionally defines the C<HAS_MEMCPY> symbol, which
  2348. indicates to the C program that the memcpy() routine is available
  2349. to copy blocks of memory.
  2350.  
  2351. =item C<d_memmove>
  2352.  
  2353. From F<d_memmove.U>:
  2354.  
  2355. This variable conditionally defines the C<HAS_MEMMOVE> symbol, which
  2356. indicates to the C program that the memmove() routine is available
  2357. to copy potentatially overlapping blocks of memory.
  2358.  
  2359. =item C<d_memset>
  2360.  
  2361. From F<d_memset.U>:
  2362.  
  2363. This variable conditionally defines the C<HAS_MEMSET> symbol, which
  2364. indicates to the C program that the memset() routine is available
  2365. to set blocks of memory.
  2366.  
  2367. =item C<d_mkdir>
  2368.  
  2369. From F<d_mkdir.U>:
  2370.  
  2371. This variable conditionally defines the C<HAS_MKDIR> symbol, which
  2372. indicates to the C program that the mkdir() routine is available
  2373. to create F<directories.>.
  2374.  
  2375. =item C<d_mkdtemp>
  2376.  
  2377. From F<d_mkdtemp.U>:
  2378.  
  2379. This variable conditionally defines the C<HAS_MKDTEMP> symbol, which
  2380. indicates to the C program that the mkdtemp() routine is available
  2381. to exclusively create a uniquely named temporary directory.
  2382.  
  2383. =item C<d_mkfifo>
  2384.  
  2385. From F<d_mkfifo.U>:
  2386.  
  2387. This variable conditionally defines the C<HAS_MKFIFO> symbol, which
  2388. indicates to the C program that the mkfifo() routine is available.
  2389.  
  2390. =item C<d_mkstemp>
  2391.  
  2392. From F<d_mkstemp.U>:
  2393.  
  2394. This variable conditionally defines the C<HAS_MKSTEMP> symbol, which
  2395. indicates to the C program that the mkstemp() routine is available
  2396. to exclusively create and open a uniquely named temporary file.
  2397.  
  2398. =item C<d_mkstemps>
  2399.  
  2400. From F<d_mkstemps.U>:
  2401.  
  2402. This variable conditionally defines the C<HAS_MKSTEMPS> symbol, which
  2403. indicates to the C program that the mkstemps() routine is available
  2404. to exclusively create and open a uniquely named (with a suffix)
  2405. temporary file.
  2406.  
  2407. =item C<d_mktime>
  2408.  
  2409. From F<d_mktime.U>:
  2410.  
  2411. This variable conditionally defines the C<HAS_MKTIME> symbol, which
  2412. indicates to the C program that the mktime() routine is available.
  2413.  
  2414. =item C<d_mktime64>
  2415.  
  2416. From F<d_timefuncs64.U>:
  2417.  
  2418. This variable conditionally defines the HAS_MKTIME64 symbol, which
  2419. indicates to the C program that the mktime64 () routine is available.
  2420.  
  2421. =item C<d_mmap>
  2422.  
  2423. From F<d_mmap.U>:
  2424.  
  2425. This variable conditionally defines C<HAS_MMAP> if mmap() is
  2426. available to map a file into memory.
  2427.  
  2428. =item C<d_modfl>
  2429.  
  2430. From F<d_modfl.U>:
  2431.  
  2432. This variable conditionally defines the C<HAS_MODFL> symbol, which
  2433. indicates to the C program that the modfl() routine is available.
  2434.  
  2435. =item C<d_modfl_pow32_bug>
  2436.  
  2437. From F<d_modfl.U>:
  2438.  
  2439. This variable conditionally defines the HAS_MODFL_POW32_BUG symbol,
  2440. which indicates that modfl() is broken for long doubles >= pow(2, 32).
  2441. For example from 4294967303.150000 one would get 4294967302.000000
  2442. and 1.150000.  The bug has been seen in certain versions of glibc,
  2443. release 2.2.2 is known to be okay.
  2444.  
  2445. =item C<d_modflproto>
  2446.  
  2447. From F<d_modfl.U>:
  2448.  
  2449. This symbol, if defined, indicates that the system provides
  2450. a prototype for the modfl() function.  Otherwise, it is up
  2451. to the program to supply one.  C99 says it should be
  2452. long double modfl(long double, long double *);
  2453.  
  2454. =item C<d_mprotect>
  2455.  
  2456. From F<d_mprotect.U>:
  2457.  
  2458. This variable conditionally defines C<HAS_MPROTECT> if mprotect() is
  2459. available to modify the access protection of a memory mapped file.
  2460.  
  2461. =item C<d_msg>
  2462.  
  2463. From F<d_msg.U>:
  2464.  
  2465. This variable conditionally defines the C<HAS_MSG> symbol, which
  2466. indicates that the entire msg*(2) library is present.
  2467.  
  2468. =item C<d_msg_ctrunc>
  2469.  
  2470. From F<d_socket.U>:
  2471.  
  2472. This variable conditionally defines the C<HAS_MSG_CTRUNC> symbol,
  2473. which indicates that the C<MSG_CTRUNC> is available.  #ifdef is
  2474. not enough because it may be an enum, glibc has been known to do this.
  2475.  
  2476. =item C<d_msg_dontroute>
  2477.  
  2478. From F<d_socket.U>:
  2479.  
  2480. This variable conditionally defines the C<HAS_MSG_DONTROUTE> symbol,
  2481. which indicates that the C<MSG_DONTROUTE> is available.  #ifdef is
  2482. not enough because it may be an enum, glibc has been known to do this.
  2483.  
  2484. =item C<d_msg_oob>
  2485.  
  2486. From F<d_socket.U>:
  2487.  
  2488. This variable conditionally defines the C<HAS_MSG_OOB> symbol,
  2489. which indicates that the C<MSG_OOB> is available.  #ifdef is
  2490. not enough because it may be an enum, glibc has been known to do this.
  2491.  
  2492. =item C<d_msg_peek>
  2493.  
  2494. From F<d_socket.U>:
  2495.  
  2496. This variable conditionally defines the C<HAS_MSG_PEEK> symbol,
  2497. which indicates that the C<MSG_PEEK> is available.  #ifdef is
  2498. not enough because it may be an enum, glibc has been known to do this.
  2499.  
  2500. =item C<d_msg_proxy>
  2501.  
  2502. From F<d_socket.U>:
  2503.  
  2504. This variable conditionally defines the C<HAS_MSG_PROXY> symbol,
  2505. which indicates that the C<MSG_PROXY> is available.  #ifdef is
  2506. not enough because it may be an enum, glibc has been known to do this.
  2507.  
  2508. =item C<d_msgctl>
  2509.  
  2510. From F<d_msgctl.U>:
  2511.  
  2512. This variable conditionally defines the C<HAS_MSGCTL> symbol, which
  2513. indicates to the C program that the msgctl() routine is available.
  2514.  
  2515. =item C<d_msgget>
  2516.  
  2517. From F<d_msgget.U>:
  2518.  
  2519. This variable conditionally defines the C<HAS_MSGGET> symbol, which
  2520. indicates to the C program that the msgget() routine is available.
  2521.  
  2522. =item C<d_msghdr_s>
  2523.  
  2524. From F<d_msghdr_s.U>:
  2525.  
  2526. This variable conditionally defines the C<HAS_STRUCT_MSGHDR> symbol,
  2527. which indicates that the struct msghdr is supported.
  2528.  
  2529. =item C<d_msgrcv>
  2530.  
  2531. From F<d_msgrcv.U>:
  2532.  
  2533. This variable conditionally defines the C<HAS_MSGRCV> symbol, which
  2534. indicates to the C program that the msgrcv() routine is available.
  2535.  
  2536. =item C<d_msgsnd>
  2537.  
  2538. From F<d_msgsnd.U>:
  2539.  
  2540. This variable conditionally defines the C<HAS_MSGSND> symbol, which
  2541. indicates to the C program that the msgsnd() routine is available.
  2542.  
  2543. =item C<d_msync>
  2544.  
  2545. From F<d_msync.U>:
  2546.  
  2547. This variable conditionally defines C<HAS_MSYNC> if msync() is
  2548. available to synchronize a mapped file.
  2549.  
  2550. =item C<d_munmap>
  2551.  
  2552. From F<d_munmap.U>:
  2553.  
  2554. This variable conditionally defines C<HAS_MUNMAP> if munmap() is
  2555. available to unmap a region mapped by mmap().
  2556.  
  2557. =item C<d_mymalloc>
  2558.  
  2559. From F<mallocsrc.U>:
  2560.  
  2561. This variable conditionally defines C<MYMALLOC> in case other parts
  2562. of the source want to take special action if C<MYMALLOC> is used.
  2563. This may include different sorts of profiling or error detection.
  2564.  
  2565. =item C<d_ndbm>
  2566.  
  2567. From F<i_ndbm.U>:
  2568.  
  2569. This variable conditionally defines the C<HAS_NDBM> symbol, which
  2570. indicates that both the F<ndbm.h> include file and an appropriate ndbm
  2571. library exist.  Consult the different i_*ndbm variables
  2572. to find out the actual include location.  Sometimes, a system has the
  2573. header file but not the library.  This variable will only be set if
  2574. the system has both.
  2575.  
  2576. =item C<d_ndbm_h_uses_prototypes>
  2577.  
  2578. From F<i_ndbm.U>:
  2579.  
  2580. This variable conditionally defines the C<NDBM_H_USES_PROTOTYPES> symbol,
  2581. which indicates that the F<ndbm.h> include file uses real C<ANSI> C
  2582. prototypes instead of K&R style function declarations. K&R style
  2583. declarations are unsupported in C++, so the include file requires
  2584. special handling when using a C++ compiler and this variable is
  2585. undefined. Consult the different d_*ndbm_h_uses_prototypes variables
  2586. to get the same information for alternative F<ndbm.h> include files.
  2587.  
  2588. =item C<d_nice>
  2589.  
  2590. From F<d_nice.U>:
  2591.  
  2592. This variable conditionally defines the C<HAS_NICE> symbol, which
  2593. indicates to the C program that the nice() routine is available.
  2594.  
  2595. =item C<d_nl_langinfo>
  2596.  
  2597. From F<d_nl_langinfo.U>:
  2598.  
  2599. This variable conditionally defines the C<HAS_NL_LANGINFO> symbol, which
  2600. indicates to the C program that the nl_langinfo() routine is available.
  2601.  
  2602. =item C<d_nv_preserves_uv>
  2603.  
  2604. From F<perlxv.U>:
  2605.  
  2606. This variable indicates whether a variable of type nvtype
  2607. can preserve all the bits a variable of type uvtype.
  2608.  
  2609. =item C<d_nv_zero_is_allbits_zero>
  2610.  
  2611. From F<perlxv.U>:
  2612.  
  2613. This variable indicates whether a variable of type nvtype
  2614. stores 0.0 in memory as all bits zero.
  2615.  
  2616. =item C<d_off64_t>
  2617.  
  2618. From F<d_off64_t.U>:
  2619.  
  2620. This symbol will be defined if the C compiler supports off64_t.
  2621.  
  2622. =item C<d_old_pthread_create_joinable>
  2623.  
  2624. From F<d_pthrattrj.U>:
  2625.  
  2626. This variable conditionally defines pthread_create_joinable.
  2627. undef if F<pthread.h> defines C<PTHREAD_CREATE_JOINABLE>.
  2628.  
  2629. =item C<d_oldpthreads>
  2630.  
  2631. From F<usethreads.U>:
  2632.  
  2633. This variable conditionally defines the C<OLD_PTHREADS_API> symbol,
  2634. and indicates that Perl should be built to use the old
  2635. draft C<POSIX> threads C<API>.  This is only potentially meaningful if
  2636. usethreads is set.
  2637.  
  2638. =item C<d_oldsock>
  2639.  
  2640. From F<d_socket.U>:
  2641.  
  2642. This variable conditionally defines the C<OLDSOCKET> symbol, which
  2643. indicates that the C<BSD> socket interface is based on 4.1c and not 4.2.
  2644.  
  2645. =item C<d_open3>
  2646.  
  2647. From F<d_open3.U>:
  2648.  
  2649. This variable conditionally defines the HAS_OPEN3 manifest constant,
  2650. which indicates to the C program that the 3 argument version of
  2651. the open(2) function is available.
  2652.  
  2653. =item C<d_pathconf>
  2654.  
  2655. From F<d_pathconf.U>:
  2656.  
  2657. This variable conditionally defines the C<HAS_PATHCONF> symbol, which
  2658. indicates to the C program that the pathconf() routine is available
  2659. to determine file-system related limits and options associated
  2660. with a given filename.
  2661.  
  2662. =item C<d_pause>
  2663.  
  2664. From F<d_pause.U>:
  2665.  
  2666. This variable conditionally defines the C<HAS_PAUSE> symbol, which
  2667. indicates to the C program that the pause() routine is available
  2668. to suspend a process until a signal is received.
  2669.  
  2670. =item C<d_perl_otherlibdirs>
  2671.  
  2672. From F<otherlibdirs.U>:
  2673.  
  2674. This variable conditionally defines C<PERL_OTHERLIBDIRS>, which
  2675. contains a colon-separated set of paths for the perl binary to
  2676. include in @C<INC>.  See also otherlibdirs.
  2677.  
  2678. =item C<d_phostname>
  2679.  
  2680. From F<d_gethname.U>:
  2681.  
  2682. This variable conditionally defines the C<HAS_PHOSTNAME> symbol, which
  2683. contains the shell command which, when fed to popen(), may be
  2684. used to derive the host name.
  2685.  
  2686. =item C<d_pipe>
  2687.  
  2688. From F<d_pipe.U>:
  2689.  
  2690. This variable conditionally defines the C<HAS_PIPE> symbol, which
  2691. indicates to the C program that the pipe() routine is available
  2692. to create an inter-process channel.
  2693.  
  2694. =item C<d_poll>
  2695.  
  2696. From F<d_poll.U>:
  2697.  
  2698. This variable conditionally defines the C<HAS_POLL> symbol, which
  2699. indicates to the C program that the poll() routine is available
  2700. to poll active file descriptors.
  2701.  
  2702. =item C<d_portable>
  2703.  
  2704. From F<d_portable.U>:
  2705.  
  2706. This variable conditionally defines the C<PORTABLE> symbol, which
  2707. indicates to the C program that it should not assume that it is
  2708. running on the machine it was compiled on.
  2709.  
  2710. =item C<d_PRId64>
  2711.  
  2712. From F<quadfio.U>:
  2713.  
  2714. This variable conditionally defines the PERL_PRId64 symbol, which
  2715. indiciates that stdio has a symbol to print 64-bit decimal numbers.
  2716.  
  2717. =item C<d_PRIeldbl>
  2718.  
  2719. From F<longdblfio.U>:
  2720.  
  2721. This variable conditionally defines the PERL_PRIfldbl symbol, which
  2722. indiciates that stdio has a symbol to print long doubles.
  2723.  
  2724. =item C<d_PRIEUldbl>
  2725.  
  2726. From F<longdblfio.U>:
  2727.  
  2728. This variable conditionally defines the PERL_PRIfldbl symbol, which
  2729. indiciates that stdio has a symbol to print long doubles.
  2730. The C<U> in the name is to separate this from d_PRIeldbl so that even
  2731. case-blind systems can see the difference.
  2732.  
  2733. =item C<d_PRIfldbl>
  2734.  
  2735. From F<longdblfio.U>:
  2736.  
  2737. This variable conditionally defines the PERL_PRIfldbl symbol, which
  2738. indiciates that stdio has a symbol to print long doubles.
  2739.  
  2740. =item C<d_PRIFUldbl>
  2741.  
  2742. From F<longdblfio.U>:
  2743.  
  2744. This variable conditionally defines the PERL_PRIfldbl symbol, which
  2745. indiciates that stdio has a symbol to print long doubles.
  2746. The C<U> in the name is to separate this from d_PRIfldbl so that even
  2747. case-blind systems can see the difference.
  2748.  
  2749. =item C<d_PRIgldbl>
  2750.  
  2751. From F<longdblfio.U>:
  2752.  
  2753. This variable conditionally defines the PERL_PRIfldbl symbol, which
  2754. indiciates that stdio has a symbol to print long doubles.
  2755.  
  2756. =item C<d_PRIGUldbl>
  2757.  
  2758. From F<longdblfio.U>:
  2759.  
  2760. This variable conditionally defines the PERL_PRIfldbl symbol, which
  2761. indiciates that stdio has a symbol to print long doubles.
  2762. The C<U> in the name is to separate this from d_PRIgldbl so that even
  2763. case-blind systems can see the difference.
  2764.  
  2765. =item C<d_PRIi64>
  2766.  
  2767. From F<quadfio.U>:
  2768.  
  2769. This variable conditionally defines the PERL_PRIi64 symbol, which
  2770. indiciates that stdio has a symbol to print 64-bit decimal numbers.
  2771.  
  2772. =item C<d_printf_format_null>
  2773.  
  2774. From F<d_attribut.U>:
  2775.  
  2776. This variable conditionally defines C<PRINTF_FORMAT_NULL_OK>, which
  2777. indicates the C compiler allows printf-like formats to be null.
  2778.  
  2779. =item C<d_PRIo64>
  2780.  
  2781. From F<quadfio.U>:
  2782.  
  2783. This variable conditionally defines the PERL_PRIo64 symbol, which
  2784. indiciates that stdio has a symbol to print 64-bit octal numbers.
  2785.  
  2786. =item C<d_PRIu64>
  2787.  
  2788. From F<quadfio.U>:
  2789.  
  2790. This variable conditionally defines the PERL_PRIu64 symbol, which
  2791. indiciates that stdio has a symbol to print 64-bit unsigned decimal
  2792. numbers.
  2793.  
  2794. =item C<d_PRIx64>
  2795.  
  2796. From F<quadfio.U>:
  2797.  
  2798. This variable conditionally defines the PERL_PRIx64 symbol, which
  2799. indiciates that stdio has a symbol to print 64-bit hexadecimal numbers.
  2800.  
  2801. =item C<d_PRIXU64>
  2802.  
  2803. From F<quadfio.U>:
  2804.  
  2805. This variable conditionally defines the PERL_PRIXU64 symbol, which
  2806. indiciates that stdio has a symbol to print 64-bit hExADECimAl numbers.
  2807. The C<U> in the name is to separate this from d_PRIx64 so that even
  2808. case-blind systems can see the difference.
  2809.  
  2810. =item C<d_procselfexe>
  2811.  
  2812. From F<d_procselfexe.U>:
  2813.  
  2814. Defined if $procselfexe is symlink to the absolute
  2815. pathname of the executing program.
  2816.  
  2817. =item C<d_pseudofork>
  2818.  
  2819. From F<d_vfork.U>:
  2820.  
  2821. This variable conditionally defines the C<HAS_PSEUDOFORK> symbol,
  2822. which indicates that an emulation of the fork routine is available.
  2823.  
  2824. =item C<d_pthread_atfork>
  2825.  
  2826. From F<d_pthread_atfork.U>:
  2827.  
  2828. This variable conditionally defines the C<HAS_PTHREAD_ATFORK> symbol,
  2829. which indicates to the C program that the pthread_atfork()
  2830. routine is available.
  2831.  
  2832. =item C<d_pthread_attr_setscope>
  2833.  
  2834. From F<d_pthread_attr_ss.U>:
  2835.  
  2836. This variable conditionally defines C<HAS_PTHREAD_ATTR_SETSCOPE> if
  2837. pthread_attr_setscope() is available to set the contention scope
  2838. attribute of a thread attribute object.
  2839.  
  2840. =item C<d_pthread_yield>
  2841.  
  2842. From F<d_pthread_y.U>:
  2843.  
  2844. This variable conditionally defines the C<HAS_PTHREAD_YIELD>
  2845. symbol if the pthread_yield routine is available to yield
  2846. the execution of the current thread.
  2847.  
  2848. =item C<d_pwage>
  2849.  
  2850. From F<i_pwd.U>:
  2851.  
  2852. This variable conditionally defines C<PWAGE>, which indicates
  2853. that struct passwd contains pw_age.
  2854.  
  2855. =item C<d_pwchange>
  2856.  
  2857. From F<i_pwd.U>:
  2858.  
  2859. This variable conditionally defines C<PWCHANGE>, which indicates
  2860. that struct passwd contains pw_change.
  2861.  
  2862. =item C<d_pwclass>
  2863.  
  2864. From F<i_pwd.U>:
  2865.  
  2866. This variable conditionally defines C<PWCLASS>, which indicates
  2867. that struct passwd contains pw_class.
  2868.  
  2869. =item C<d_pwcomment>
  2870.  
  2871. From F<i_pwd.U>:
  2872.  
  2873. This variable conditionally defines C<PWCOMMENT>, which indicates
  2874. that struct passwd contains pw_comment.
  2875.  
  2876. =item C<d_pwexpire>
  2877.  
  2878. From F<i_pwd.U>:
  2879.  
  2880. This variable conditionally defines C<PWEXPIRE>, which indicates
  2881. that struct passwd contains pw_expire.
  2882.  
  2883. =item C<d_pwgecos>
  2884.  
  2885. From F<i_pwd.U>:
  2886.  
  2887. This variable conditionally defines C<PWGECOS>, which indicates
  2888. that struct passwd contains pw_gecos.
  2889.  
  2890. =item C<d_pwpasswd>
  2891.  
  2892. From F<i_pwd.U>:
  2893.  
  2894. This variable conditionally defines C<PWPASSWD>, which indicates
  2895. that struct passwd contains pw_passwd.
  2896.  
  2897. =item C<d_pwquota>
  2898.  
  2899. From F<i_pwd.U>:
  2900.  
  2901. This variable conditionally defines C<PWQUOTA>, which indicates
  2902. that struct passwd contains pw_quota.
  2903.  
  2904. =item C<d_qgcvt>
  2905.  
  2906. From F<d_qgcvt.U>:
  2907.  
  2908. This variable conditionally defines the C<HAS_QGCVT> symbol, which
  2909. indicates to the C program that the qgcvt() routine is available.
  2910.  
  2911. =item C<d_quad>
  2912.  
  2913. From F<quadtype.U>:
  2914.  
  2915. This variable, if defined, tells that there's a 64-bit integer type,
  2916. quadtype.
  2917.  
  2918. =item C<d_random_r>
  2919.  
  2920. From F<d_random_r.U>:
  2921.  
  2922. This variable conditionally defines the C<HAS_RANDOM_R> symbol,
  2923. which indicates to the C program that the random_r()
  2924. routine is available.
  2925.  
  2926. =item C<d_readdir>
  2927.  
  2928. From F<d_readdir.U>:
  2929.  
  2930. This variable conditionally defines C<HAS_READDIR> if readdir() is
  2931. available to read directory entries.
  2932.  
  2933. =item C<d_readdir64_r>
  2934.  
  2935. From F<d_readdir64_r.U>:
  2936.  
  2937. This variable conditionally defines the HAS_READDIR64_R symbol,
  2938. which indicates to the C program that the readdir64_r()
  2939. routine is available.
  2940.  
  2941. =item C<d_readdir_r>
  2942.  
  2943. From F<d_readdir_r.U>:
  2944.  
  2945. This variable conditionally defines the C<HAS_READDIR_R> symbol,
  2946. which indicates to the C program that the readdir_r()
  2947. routine is available.
  2948.  
  2949. =item C<d_readlink>
  2950.  
  2951. From F<d_readlink.U>:
  2952.  
  2953. This variable conditionally defines the C<HAS_READLINK> symbol, which
  2954. indicates to the C program that the readlink() routine is available
  2955. to read the value of a symbolic link.
  2956.  
  2957. =item C<d_readv>
  2958.  
  2959. From F<d_readv.U>:
  2960.  
  2961. This variable conditionally defines the C<HAS_READV> symbol, which
  2962. indicates to the C program that the readv() routine is available.
  2963.  
  2964. =item C<d_recvmsg>
  2965.  
  2966. From F<d_recvmsg.U>:
  2967.  
  2968. This variable conditionally defines the C<HAS_RECVMSG> symbol, which
  2969. indicates to the C program that the recvmsg() routine is available.
  2970.  
  2971. =item C<d_rename>
  2972.  
  2973. From F<d_rename.U>:
  2974.  
  2975. This variable conditionally defines the C<HAS_RENAME> symbol, which
  2976. indicates to the C program that the rename() routine is available
  2977. to rename files.
  2978.  
  2979. =item C<d_rewinddir>
  2980.  
  2981. From F<d_readdir.U>:
  2982.  
  2983. This variable conditionally defines C<HAS_REWINDDIR> if rewinddir() is
  2984. available.
  2985.  
  2986. =item C<d_rmdir>
  2987.  
  2988. From F<d_rmdir.U>:
  2989.  
  2990. This variable conditionally defines C<HAS_RMDIR> if rmdir() is
  2991. available to remove directories.
  2992.  
  2993. =item C<d_safebcpy>
  2994.  
  2995. From F<d_safebcpy.U>:
  2996.  
  2997. This variable conditionally defines the C<HAS_SAFE_BCOPY> symbol if
  2998. the bcopy() routine can do overlapping copies.  Normally, you
  2999. should probably use memmove().
  3000.  
  3001. =item C<d_safemcpy>
  3002.  
  3003. From F<d_safemcpy.U>:
  3004.  
  3005. This variable conditionally defines the C<HAS_SAFE_MEMCPY> symbol if
  3006. the memcpy() routine can do overlapping copies.
  3007. For overlapping copies, memmove() should be used, if available.
  3008.  
  3009. =item C<d_sanemcmp>
  3010.  
  3011. From F<d_sanemcmp.U>:
  3012.  
  3013. This variable conditionally defines the C<HAS_SANE_MEMCMP> symbol if
  3014. the memcpy() routine is available and can be used to compare relative
  3015. magnitudes of chars with their high bits set.
  3016.  
  3017. =item C<d_sbrkproto>
  3018.  
  3019. From F<d_sbrkproto.U>:
  3020.  
  3021. This variable conditionally defines the C<HAS_SBRK_PROTO> symbol,
  3022. which indicates to the C program that the system provides
  3023. a prototype for the sbrk() function.  Otherwise, it is
  3024. up to the program to supply one.
  3025.  
  3026. =item C<d_scalbnl>
  3027.  
  3028. From F<d_scalbnl.U>:
  3029.  
  3030. This variable conditionally defines the C<HAS_SCALBNL> symbol, which
  3031. indicates to the C program that the scalbnl() routine is available.
  3032. If ilogbl is also present we can emulate frexpl.
  3033.  
  3034. =item C<d_sched_yield>
  3035.  
  3036. From F<d_pthread_y.U>:
  3037.  
  3038. This variable conditionally defines the C<HAS_SCHED_YIELD>
  3039. symbol if the sched_yield routine is available to yield
  3040. the execution of the current thread.
  3041.  
  3042. =item C<d_scm_rights>
  3043.  
  3044. From F<d_socket.U>:
  3045.  
  3046. This variable conditionally defines the C<HAS_SCM_RIGHTS> symbol,
  3047. which indicates that the C<SCM_RIGHTS> is available.  #ifdef is
  3048. not enough because it may be an enum, glibc has been known to do this.
  3049.  
  3050. =item C<d_SCNfldbl>
  3051.  
  3052. From F<longdblfio.U>:
  3053.  
  3054. This variable conditionally defines the PERL_PRIfldbl symbol, which
  3055. indiciates that stdio has a symbol to scan long doubles.
  3056.  
  3057. =item C<d_seekdir>
  3058.  
  3059. From F<d_readdir.U>:
  3060.  
  3061. This variable conditionally defines C<HAS_SEEKDIR> if seekdir() is
  3062. available.
  3063.  
  3064. =item C<d_select>
  3065.  
  3066. From F<d_select.U>:
  3067.  
  3068. This variable conditionally defines C<HAS_SELECT> if select() is
  3069. available to select active file descriptors. A <sys/time.h>
  3070. inclusion may be necessary for the timeout field.
  3071.  
  3072. =item C<d_sem>
  3073.  
  3074. From F<d_sem.U>:
  3075.  
  3076. This variable conditionally defines the C<HAS_SEM> symbol, which
  3077. indicates that the entire sem*(2) library is present.
  3078.  
  3079. =item C<d_semctl>
  3080.  
  3081. From F<d_semctl.U>:
  3082.  
  3083. This variable conditionally defines the C<HAS_SEMCTL> symbol, which
  3084. indicates to the C program that the semctl() routine is available.
  3085.  
  3086. =item C<d_semctl_semid_ds>
  3087.  
  3088. From F<d_union_semun.U>:
  3089.  
  3090. This variable conditionally defines C<USE_SEMCTL_SEMID_DS>, which
  3091. indicates that struct semid_ds * is to be used for semctl C<IPC_STAT>.
  3092.  
  3093. =item C<d_semctl_semun>
  3094.  
  3095. From F<d_union_semun.U>:
  3096.  
  3097. This variable conditionally defines C<USE_SEMCTL_SEMUN>, which
  3098. indicates that union semun is to be used for semctl C<IPC_STAT>.
  3099.  
  3100. =item C<d_semget>
  3101.  
  3102. From F<d_semget.U>:
  3103.  
  3104. This variable conditionally defines the C<HAS_SEMGET> symbol, which
  3105. indicates to the C program that the semget() routine is available.
  3106.  
  3107. =item C<d_semop>
  3108.  
  3109. From F<d_semop.U>:
  3110.  
  3111. This variable conditionally defines the C<HAS_SEMOP> symbol, which
  3112. indicates to the C program that the semop() routine is available.
  3113.  
  3114. =item C<d_sendmsg>
  3115.  
  3116. From F<d_sendmsg.U>:
  3117.  
  3118. This variable conditionally defines the C<HAS_SENDMSG> symbol, which
  3119. indicates to the C program that the sendmsg() routine is available.
  3120.  
  3121. =item C<d_setegid>
  3122.  
  3123. From F<d_setegid.U>:
  3124.  
  3125. This variable conditionally defines the C<HAS_SETEGID> symbol, which
  3126. indicates to the C program that the setegid() routine is available
  3127. to change the effective gid of the current program.
  3128.  
  3129. =item C<d_seteuid>
  3130.  
  3131. From F<d_seteuid.U>:
  3132.  
  3133. This variable conditionally defines the C<HAS_SETEUID> symbol, which
  3134. indicates to the C program that the seteuid() routine is available
  3135. to change the effective uid of the current program.
  3136.  
  3137. =item C<d_setgrent>
  3138.  
  3139. From F<d_setgrent.U>:
  3140.  
  3141. This variable conditionally defines the C<HAS_SETGRENT> symbol, which
  3142. indicates to the C program that the setgrent() routine is available
  3143. for initializing sequential access to the group database.
  3144.  
  3145. =item C<d_setgrent_r>
  3146.  
  3147. From F<d_setgrent_r.U>:
  3148.  
  3149. This variable conditionally defines the C<HAS_SETGRENT_R> symbol,
  3150. which indicates to the C program that the setgrent_r()
  3151. routine is available.
  3152.  
  3153. =item C<d_setgrps>
  3154.  
  3155. From F<d_setgrps.U>:
  3156.  
  3157. This variable conditionally defines the C<HAS_SETGROUPS> symbol, which
  3158. indicates to the C program that the setgroups() routine is available
  3159. to set the list of process groups.
  3160.  
  3161. =item C<d_sethent>
  3162.  
  3163. From F<d_sethent.U>:
  3164.  
  3165. This variable conditionally defines C<HAS_SETHOSTENT> if sethostent() is
  3166. available.
  3167.  
  3168. =item C<d_sethostent_r>
  3169.  
  3170. From F<d_sethostent_r.U>:
  3171.  
  3172. This variable conditionally defines the C<HAS_SETHOSTENT_R> symbol,
  3173. which indicates to the C program that the sethostent_r()
  3174. routine is available.
  3175.  
  3176. =item C<d_setitimer>
  3177.  
  3178. From F<d_setitimer.U>:
  3179.  
  3180. This variable conditionally defines the C<HAS_SETITIMER> symbol, which
  3181. indicates to the C program that the setitimer() routine is available.
  3182.  
  3183. =item C<d_setlinebuf>
  3184.  
  3185. From F<d_setlnbuf.U>:
  3186.  
  3187. This variable conditionally defines the C<HAS_SETLINEBUF> symbol, which
  3188. indicates to the C program that the setlinebuf() routine is available
  3189. to change stderr or stdout from block-buffered or unbuffered to a
  3190. line-buffered mode.
  3191.  
  3192. =item C<d_setlocale>
  3193.  
  3194. From F<d_setlocale.U>:
  3195.  
  3196. This variable conditionally defines C<HAS_SETLOCALE> if setlocale() is
  3197. available to handle locale-specific ctype implementations.
  3198.  
  3199. =item C<d_setlocale_r>
  3200.  
  3201. From F<d_setlocale_r.U>:
  3202.  
  3203. This variable conditionally defines the C<HAS_SETLOCALE_R> symbol,
  3204. which indicates to the C program that the setlocale_r()
  3205. routine is available.
  3206.  
  3207. =item C<d_setnent>
  3208.  
  3209. From F<d_setnent.U>:
  3210.  
  3211. This variable conditionally defines C<HAS_SETNETENT> if setnetent() is
  3212. available.
  3213.  
  3214. =item C<d_setnetent_r>
  3215.  
  3216. From F<d_setnetent_r.U>:
  3217.  
  3218. This variable conditionally defines the C<HAS_SETNETENT_R> symbol,
  3219. which indicates to the C program that the setnetent_r()
  3220. routine is available.
  3221.  
  3222. =item C<d_setpent>
  3223.  
  3224. From F<d_setpent.U>:
  3225.  
  3226. This variable conditionally defines C<HAS_SETPROTOENT> if setprotoent() is
  3227. available.
  3228.  
  3229. =item C<d_setpgid>
  3230.  
  3231. From F<d_setpgid.U>:
  3232.  
  3233. This variable conditionally defines the C<HAS_SETPGID> symbol if the
  3234. setpgid(pid, gpid) function is available to set process group C<ID>.
  3235.  
  3236. =item C<d_setpgrp>
  3237.  
  3238. From F<d_setpgrp.U>:
  3239.  
  3240. This variable conditionally defines C<HAS_SETPGRP> if setpgrp() is
  3241. available to set the current process group.
  3242.  
  3243. =item C<d_setpgrp2>
  3244.  
  3245. From F<d_setpgrp2.U>:
  3246.  
  3247. This variable conditionally defines the HAS_SETPGRP2 symbol, which
  3248. indicates to the C program that the setpgrp2() (as in F<DG/C<UX>>) routine
  3249. is available to set the current process group.
  3250.  
  3251. =item C<d_setprior>
  3252.  
  3253. From F<d_setprior.U>:
  3254.  
  3255. This variable conditionally defines C<HAS_SETPRIORITY> if setpriority()
  3256. is available to set a process's priority.
  3257.  
  3258. =item C<d_setproctitle>
  3259.  
  3260. From F<d_setproctitle.U>:
  3261.  
  3262. This variable conditionally defines the C<HAS_SETPROCTITLE> symbol,
  3263. which indicates to the C program that the setproctitle() routine
  3264. is available.
  3265.  
  3266. =item C<d_setprotoent_r>
  3267.  
  3268. From F<d_setprotoent_r.U>:
  3269.  
  3270. This variable conditionally defines the C<HAS_SETPROTOENT_R> symbol,
  3271. which indicates to the C program that the setprotoent_r()
  3272. routine is available.
  3273.  
  3274. =item C<d_setpwent>
  3275.  
  3276. From F<d_setpwent.U>:
  3277.  
  3278. This variable conditionally defines the C<HAS_SETPWENT> symbol, which
  3279. indicates to the C program that the setpwent() routine is available
  3280. for initializing sequential access to the passwd database.
  3281.  
  3282. =item C<d_setpwent_r>
  3283.  
  3284. From F<d_setpwent_r.U>:
  3285.  
  3286. This variable conditionally defines the C<HAS_SETPWENT_R> symbol,
  3287. which indicates to the C program that the setpwent_r()
  3288. routine is available.
  3289.  
  3290. =item C<d_setregid>
  3291.  
  3292. From F<d_setregid.U>:
  3293.  
  3294. This variable conditionally defines C<HAS_SETREGID> if setregid() is
  3295. available to change the real and effective gid of the current
  3296. process.
  3297.  
  3298. =item C<d_setresgid>
  3299.  
  3300. From F<d_setregid.U>:
  3301.  
  3302. This variable conditionally defines C<HAS_SETRESGID> if setresgid() is
  3303. available to change the real, effective and saved gid of the current
  3304. process.
  3305.  
  3306. =item C<d_setresuid>
  3307.  
  3308. From F<d_setreuid.U>:
  3309.  
  3310. This variable conditionally defines C<HAS_SETREUID> if setresuid() is
  3311. available to change the real, effective and saved uid of the current
  3312. process.
  3313.  
  3314. =item C<d_setreuid>
  3315.  
  3316. From F<d_setreuid.U>:
  3317.  
  3318. This variable conditionally defines C<HAS_SETREUID> if setreuid() is
  3319. available to change the real and effective uid of the current
  3320. process.
  3321.  
  3322. =item C<d_setrgid>
  3323.  
  3324. From F<d_setrgid.U>:
  3325.  
  3326. This variable conditionally defines the C<HAS_SETRGID> symbol, which
  3327. indicates to the C program that the setrgid() routine is available
  3328. to change the real gid of the current program.
  3329.  
  3330. =item C<d_setruid>
  3331.  
  3332. From F<d_setruid.U>:
  3333.  
  3334. This variable conditionally defines the C<HAS_SETRUID> symbol, which
  3335. indicates to the C program that the setruid() routine is available
  3336. to change the real uid of the current program.
  3337.  
  3338. =item C<d_setsent>
  3339.  
  3340. From F<d_setsent.U>:
  3341.  
  3342. This variable conditionally defines C<HAS_SETSERVENT> if setservent() is
  3343. available.
  3344.  
  3345. =item C<d_setservent_r>
  3346.  
  3347. From F<d_setservent_r.U>:
  3348.  
  3349. This variable conditionally defines the C<HAS_SETSERVENT_R> symbol,
  3350. which indicates to the C program that the setservent_r()
  3351. routine is available.
  3352.  
  3353. =item C<d_setsid>
  3354.  
  3355. From F<d_setsid.U>:
  3356.  
  3357. This variable conditionally defines C<HAS_SETSID> if setsid() is
  3358. available to set the process group C<ID>.
  3359.  
  3360. =item C<d_setvbuf>
  3361.  
  3362. From F<d_setvbuf.U>:
  3363.  
  3364. This variable conditionally defines the C<HAS_SETVBUF> symbol, which
  3365. indicates to the C program that the setvbuf() routine is available
  3366. to change buffering on an open stdio stream.
  3367.  
  3368. =item C<d_sfio>
  3369.  
  3370. From F<d_sfio.U>:
  3371.  
  3372. This variable conditionally defines the C<USE_SFIO> symbol,
  3373. and indicates whether sfio is available (and should be used).
  3374.  
  3375. =item C<d_shm>
  3376.  
  3377. From F<d_shm.U>:
  3378.  
  3379. This variable conditionally defines the C<HAS_SHM> symbol, which
  3380. indicates that the entire shm*(2) library is present.
  3381.  
  3382. =item C<d_shmat>
  3383.  
  3384. From F<d_shmat.U>:
  3385.  
  3386. This variable conditionally defines the C<HAS_SHMAT> symbol, which
  3387. indicates to the C program that the shmat() routine is available.
  3388.  
  3389. =item C<d_shmatprototype>
  3390.  
  3391. From F<d_shmat.U>:
  3392.  
  3393. This variable conditionally defines the C<HAS_SHMAT_PROTOTYPE>
  3394. symbol, which indicates that F<sys/shm.h> has a prototype for
  3395. shmat.
  3396.  
  3397. =item C<d_shmctl>
  3398.  
  3399. From F<d_shmctl.U>:
  3400.  
  3401. This variable conditionally defines the C<HAS_SHMCTL> symbol, which
  3402. indicates to the C program that the shmctl() routine is available.
  3403.  
  3404. =item C<d_shmdt>
  3405.  
  3406. From F<d_shmdt.U>:
  3407.  
  3408. This variable conditionally defines the C<HAS_SHMDT> symbol, which
  3409. indicates to the C program that the shmdt() routine is available.
  3410.  
  3411. =item C<d_shmget>
  3412.  
  3413. From F<d_shmget.U>:
  3414.  
  3415. This variable conditionally defines the C<HAS_SHMGET> symbol, which
  3416. indicates to the C program that the shmget() routine is available.
  3417.  
  3418. =item C<d_sigaction>
  3419.  
  3420. From F<d_sigaction.U>:
  3421.  
  3422. This variable conditionally defines the C<HAS_SIGACTION> symbol, which
  3423. indicates that the Vr4 sigaction() routine is available.
  3424.  
  3425. =item C<d_signbit>
  3426.  
  3427. From F<d_signbit.U>:
  3428.  
  3429. This variable conditionally defines the C<HAS_SIGNBIT> symbol, which
  3430. indicates to the C program that the signbit() routine is available
  3431. and safe to use with perl's intern C<NV> type.
  3432.  
  3433. =item C<d_sigprocmask>
  3434.  
  3435. From F<d_sigprocmask.U>:
  3436.  
  3437. This variable conditionally defines C<HAS_SIGPROCMASK>
  3438. if sigprocmask() is available to examine or change the signal mask
  3439. of the calling process.
  3440.  
  3441. =item C<d_sigsetjmp>
  3442.  
  3443. From F<d_sigsetjmp.U>:
  3444.  
  3445. This variable conditionally defines the C<HAS_SIGSETJMP> symbol,
  3446. which indicates that the sigsetjmp() routine is available to
  3447. call setjmp() and optionally save the process's signal mask.
  3448.  
  3449. =item C<d_sitearch>
  3450.  
  3451. From F<sitearch.U>:
  3452.  
  3453. This variable conditionally defines C<SITEARCH> to hold the pathname
  3454. of architecture-dependent library files for $package.  If
  3455. $sitearch is the same as $archlib, then this is set to undef.
  3456.  
  3457. =item C<d_snprintf>
  3458.  
  3459. From F<d_snprintf.U>:
  3460.  
  3461. This variable conditionally defines the C<HAS_SNPRINTF> symbol, which
  3462. indicates to the C program that the snprintf () library function
  3463. is available.
  3464.  
  3465. =item C<d_sockatmark>
  3466.  
  3467. From F<d_sockatmark.U>:
  3468.  
  3469. This variable conditionally defines the C<HAS_SOCKATMARK> symbol, which
  3470. indicates to the C program that the sockatmark() routine is available.
  3471.  
  3472. =item C<d_sockatmarkproto>
  3473.  
  3474. From F<d_sockatmarkproto.U>:
  3475.  
  3476. This variable conditionally defines the C<HAS_SOCKATMARK_PROTO> symbol,
  3477. which indicates to the C program that the system provides
  3478. a prototype for the sockatmark() function.  Otherwise, it is
  3479. up to the program to supply one.
  3480.  
  3481. =item C<d_socket>
  3482.  
  3483. From F<d_socket.U>:
  3484.  
  3485. This variable conditionally defines C<HAS_SOCKET>, which indicates
  3486. that the C<BSD> socket interface is supported.
  3487.  
  3488. =item C<d_socklen_t>
  3489.  
  3490. From F<d_socklen_t.U>:
  3491.  
  3492. This symbol will be defined if the C compiler supports socklen_t.
  3493.  
  3494. =item C<d_sockpair>
  3495.  
  3496. From F<d_socket.U>:
  3497.  
  3498. This variable conditionally defines the C<HAS_SOCKETPAIR> symbol, which
  3499. indicates that the C<BSD> socketpair() is supported.
  3500.  
  3501. =item C<d_socks5_init>
  3502.  
  3503. From F<d_socks5_init.U>:
  3504.  
  3505. This variable conditionally defines the HAS_SOCKS5_INIT symbol, which
  3506. indicates to the C program that the socks5_init() routine is available.
  3507.  
  3508. =item C<d_sprintf_returns_strlen>
  3509.  
  3510. From F<d_sprintf_len.U>:
  3511.  
  3512. This variable defines whether sprintf returns the length of the string
  3513. (as per the C<ANSI> spec). Some C libraries retain compatibility with
  3514. pre-C<ANSI> C and return a pointer to the passed in buffer; for these
  3515. this variable will be undef.
  3516.  
  3517. =item C<d_sqrtl>
  3518.  
  3519. From F<d_sqrtl.U>:
  3520.  
  3521. This variable conditionally defines the C<HAS_SQRTL> symbol, which
  3522. indicates to the C program that the sqrtl() routine is available.
  3523.  
  3524. =item C<d_srand48_r>
  3525.  
  3526. From F<d_srand48_r.U>:
  3527.  
  3528. This variable conditionally defines the HAS_SRAND48_R symbol,
  3529. which indicates to the C program that the srand48_r()
  3530. routine is available.
  3531.  
  3532. =item C<d_srandom_r>
  3533.  
  3534. From F<d_srandom_r.U>:
  3535.  
  3536. This variable conditionally defines the C<HAS_SRANDOM_R> symbol,
  3537. which indicates to the C program that the srandom_r()
  3538. routine is available.
  3539.  
  3540. =item C<d_sresgproto>
  3541.  
  3542. From F<d_sresgproto.U>:
  3543.  
  3544. This variable conditionally defines the C<HAS_SETRESGID_PROTO> symbol,
  3545. which indicates to the C program that the system provides
  3546. a prototype for the setresgid() function.  Otherwise, it is
  3547. up to the program to supply one.
  3548.  
  3549. =item C<d_sresuproto>
  3550.  
  3551. From F<d_sresuproto.U>:
  3552.  
  3553. This variable conditionally defines the C<HAS_SETRESUID_PROTO> symbol,
  3554. which indicates to the C program that the system provides
  3555. a prototype for the setresuid() function.  Otherwise, it is
  3556. up to the program to supply one.
  3557.  
  3558. =item C<d_statblks>
  3559.  
  3560. From F<d_statblks.U>:
  3561.  
  3562. This variable conditionally defines C<USE_STAT_BLOCKS>
  3563. if this system has a stat structure declaring
  3564. st_blksize and st_blocks.
  3565.  
  3566. =item C<d_statfs_f_flags>
  3567.  
  3568. From F<d_statfs_f_flags.U>:
  3569.  
  3570. This variable conditionally defines the C<HAS_STRUCT_STATFS_F_FLAGS>
  3571. symbol, which indicates to struct statfs from has f_flags member.
  3572. This kind of struct statfs is coming from F<sys/mount.h> (C<BSD>),
  3573. not from F<sys/statfs.h> (C<SYSV>).
  3574.  
  3575. =item C<d_statfs_s>
  3576.  
  3577. From F<d_statfs_s.U>:
  3578.  
  3579. This variable conditionally defines the C<HAS_STRUCT_STATFS> symbol,
  3580. which indicates that the struct statfs is supported.
  3581.  
  3582. =item C<d_statvfs>
  3583.  
  3584. From F<d_statvfs.U>:
  3585.  
  3586. This variable conditionally defines the C<HAS_STATVFS> symbol, which
  3587. indicates to the C program that the statvfs() routine is available.
  3588.  
  3589. =item C<d_stdio_cnt_lval>
  3590.  
  3591. From F<d_stdstdio.U>:
  3592.  
  3593. This variable conditionally defines C<STDIO_CNT_LVALUE> if the
  3594. C<FILE_cnt> macro can be used as an lvalue.
  3595.  
  3596. =item C<d_stdio_ptr_lval>
  3597.  
  3598. From F<d_stdstdio.U>:
  3599.  
  3600. This variable conditionally defines C<STDIO_PTR_LVALUE> if the
  3601. C<FILE_ptr> macro can be used as an lvalue.
  3602.  
  3603. =item C<d_stdio_ptr_lval_nochange_cnt>
  3604.  
  3605. From F<d_stdstdio.U>:
  3606.  
  3607. This symbol is defined if using the C<FILE_ptr> macro as an lvalue
  3608. to increase the pointer by n leaves File_cnt(fp) unchanged.
  3609.  
  3610. =item C<d_stdio_ptr_lval_sets_cnt>
  3611.  
  3612. From F<d_stdstdio.U>:
  3613.  
  3614. This symbol is defined if using the C<FILE_ptr> macro as an lvalue
  3615. to increase the pointer by n has the side effect of decreasing the
  3616. value of File_cnt(fp) by n.
  3617.  
  3618. =item C<d_stdio_stream_array>
  3619.  
  3620. From F<stdio_streams.U>:
  3621.  
  3622. This variable tells whether there is an array holding
  3623. the stdio streams.
  3624.  
  3625. =item C<d_stdiobase>
  3626.  
  3627. From F<d_stdstdio.U>:
  3628.  
  3629. This variable conditionally defines C<USE_STDIO_BASE> if this system
  3630. has a C<FILE> structure declaring a usable _base field (or equivalent)
  3631. in F<stdio.h>.
  3632.  
  3633. =item C<d_stdstdio>
  3634.  
  3635. From F<d_stdstdio.U>:
  3636.  
  3637. This variable conditionally defines C<USE_STDIO_PTR> if this system
  3638. has a C<FILE> structure declaring usable _ptr and _cnt fields (or
  3639. equivalent) in F<stdio.h>.
  3640.  
  3641. =item C<d_strchr>
  3642.  
  3643. From F<d_strchr.U>:
  3644.  
  3645. This variable conditionally defines C<HAS_STRCHR> if strchr() and
  3646. strrchr() are available for string searching.
  3647.  
  3648. =item C<d_strcoll>
  3649.  
  3650. From F<d_strcoll.U>:
  3651.  
  3652. This variable conditionally defines C<HAS_STRCOLL> if strcoll() is
  3653. available to compare strings using collating information.
  3654.  
  3655. =item C<d_strctcpy>
  3656.  
  3657. From F<d_strctcpy.U>:
  3658.  
  3659. This variable conditionally defines the C<USE_STRUCT_COPY> symbol, which
  3660. indicates to the C program that this C compiler knows how to copy
  3661. structures.
  3662.  
  3663. =item C<d_strerrm>
  3664.  
  3665. From F<d_strerror.U>:
  3666.  
  3667. This variable holds what Strerrr is defined as to translate an error
  3668. code condition into an error message string. It could be C<strerror>
  3669. or a more C<complex> macro emulating strrror with sys_errlist[], or the
  3670. C<unknown> string when both strerror and sys_errlist are missing.
  3671.  
  3672. =item C<d_strerror>
  3673.  
  3674. From F<d_strerror.U>:
  3675.  
  3676. This variable conditionally defines C<HAS_STRERROR> if strerror() is
  3677. available to translate error numbers to strings.
  3678.  
  3679. =item C<d_strerror_r>
  3680.  
  3681. From F<d_strerror_r.U>:
  3682.  
  3683. This variable conditionally defines the C<HAS_STRERROR_R> symbol,
  3684. which indicates to the C program that the strerror_r()
  3685. routine is available.
  3686.  
  3687. =item C<d_strftime>
  3688.  
  3689. From F<d_strftime.U>:
  3690.  
  3691. This variable conditionally defines the C<HAS_STRFTIME> symbol, which
  3692. indicates to the C program that the strftime() routine is available.
  3693.  
  3694. =item C<d_strlcat>
  3695.  
  3696. From F<d_strlcat.U>:
  3697.  
  3698. This variable conditionally defines the C<HAS_STRLCAT> symbol, which
  3699. indicates to the C program that the strlcat () routine is available.
  3700.  
  3701. =item C<d_strlcpy>
  3702.  
  3703. From F<d_strlcpy.U>:
  3704.  
  3705. This variable conditionally defines the C<HAS_STRLCPY> symbol, which
  3706. indicates to the C program that the strlcpy () routine is available.
  3707.  
  3708. =item C<d_strtod>
  3709.  
  3710. From F<d_strtod.U>:
  3711.  
  3712. This variable conditionally defines the C<HAS_STRTOD> symbol, which
  3713. indicates to the C program that the strtod() routine is available
  3714. to provide better numeric string conversion than atof().
  3715.  
  3716. =item C<d_strtol>
  3717.  
  3718. From F<d_strtol.U>:
  3719.  
  3720. This variable conditionally defines the C<HAS_STRTOL> symbol, which
  3721. indicates to the C program that the strtol() routine is available
  3722. to provide better numeric string conversion than atoi() and friends.
  3723.  
  3724. =item C<d_strtold>
  3725.  
  3726. From F<d_strtold.U>:
  3727.  
  3728. This variable conditionally defines the C<HAS_STRTOLD> symbol, which
  3729. indicates to the C program that the strtold() routine is available.
  3730.  
  3731. =item C<d_strtoll>
  3732.  
  3733. From F<d_strtoll.U>:
  3734.  
  3735. This variable conditionally defines the C<HAS_STRTOLL> symbol, which
  3736. indicates to the C program that the strtoll() routine is available.
  3737.  
  3738. =item C<d_strtoq>
  3739.  
  3740. From F<d_strtoq.U>:
  3741.  
  3742. This variable conditionally defines the C<HAS_STRTOQ> symbol, which
  3743. indicates to the C program that the strtoq() routine is available.
  3744.  
  3745. =item C<d_strtoul>
  3746.  
  3747. From F<d_strtoul.U>:
  3748.  
  3749. This variable conditionally defines the C<HAS_STRTOUL> symbol, which
  3750. indicates to the C program that the strtoul() routine is available
  3751. to provide conversion of strings to unsigned long.
  3752.  
  3753. =item C<d_strtoull>
  3754.  
  3755. From F<d_strtoull.U>:
  3756.  
  3757. This variable conditionally defines the C<HAS_STRTOULL> symbol, which
  3758. indicates to the C program that the strtoull() routine is available.
  3759.  
  3760. =item C<d_strtouq>
  3761.  
  3762. From F<d_strtouq.U>:
  3763.  
  3764. This variable conditionally defines the C<HAS_STRTOUQ> symbol, which
  3765. indicates to the C program that the strtouq() routine is available.
  3766.  
  3767. =item C<d_strxfrm>
  3768.  
  3769. From F<d_strxfrm.U>:
  3770.  
  3771. This variable conditionally defines C<HAS_STRXFRM> if strxfrm() is
  3772. available to transform strings.
  3773.  
  3774. =item C<d_suidsafe>
  3775.  
  3776. From F<d_dosuid.U>:
  3777.  
  3778. This variable conditionally defines C<SETUID_SCRIPTS_ARE_SECURE_NOW>
  3779. if setuid scripts can be secure.  This test looks in F</dev/fd/>.
  3780.  
  3781. =item C<d_symlink>
  3782.  
  3783. From F<d_symlink.U>:
  3784.  
  3785. This variable conditionally defines the C<HAS_SYMLINK> symbol, which
  3786. indicates to the C program that the symlink() routine is available
  3787. to create symbolic links.
  3788.  
  3789. =item C<d_syscall>
  3790.  
  3791. From F<d_syscall.U>:
  3792.  
  3793. This variable conditionally defines C<HAS_SYSCALL> if syscall() is
  3794. available call arbitrary system calls.
  3795.  
  3796. =item C<d_syscallproto>
  3797.  
  3798. From F<d_syscallproto.U>:
  3799.  
  3800. This variable conditionally defines the C<HAS_SYSCALL_PROTO> symbol,
  3801. which indicates to the C program that the system provides
  3802. a prototype for the syscall() function.  Otherwise, it is
  3803. up to the program to supply one.
  3804.  
  3805. =item C<d_sysconf>
  3806.  
  3807. From F<d_sysconf.U>:
  3808.  
  3809. This variable conditionally defines the C<HAS_SYSCONF> symbol, which
  3810. indicates to the C program that the sysconf() routine is available
  3811. to determine system related limits and options.
  3812.  
  3813. =item C<d_sysernlst>
  3814.  
  3815. From F<d_strerror.U>:
  3816.  
  3817. This variable conditionally defines C<HAS_SYS_ERRNOLIST> if sys_errnolist[]
  3818. is available to translate error numbers to the symbolic name.
  3819.  
  3820. =item C<d_syserrlst>
  3821.  
  3822. From F<d_strerror.U>:
  3823.  
  3824. This variable conditionally defines C<HAS_SYS_ERRLIST> if sys_errlist[] is
  3825. available to translate error numbers to strings.
  3826.  
  3827. =item C<d_system>
  3828.  
  3829. From F<d_system.U>:
  3830.  
  3831. This variable conditionally defines C<HAS_SYSTEM> if system() is
  3832. available to issue a shell command.
  3833.  
  3834. =item C<d_tcgetpgrp>
  3835.  
  3836. From F<d_tcgtpgrp.U>:
  3837.  
  3838. This variable conditionally defines the C<HAS_TCGETPGRP> symbol, which
  3839. indicates to the C program that the tcgetpgrp() routine is available.
  3840. to get foreground process group C<ID>.
  3841.  
  3842. =item C<d_tcsetpgrp>
  3843.  
  3844. From F<d_tcstpgrp.U>:
  3845.  
  3846. This variable conditionally defines the C<HAS_TCSETPGRP> symbol, which
  3847. indicates to the C program that the tcsetpgrp() routine is available
  3848. to set foreground process group C<ID>.
  3849.  
  3850. =item C<d_telldir>
  3851.  
  3852. From F<d_readdir.U>:
  3853.  
  3854. This variable conditionally defines C<HAS_TELLDIR> if telldir() is
  3855. available.
  3856.  
  3857. =item C<d_telldirproto>
  3858.  
  3859. From F<d_telldirproto.U>:
  3860.  
  3861. This variable conditionally defines the C<HAS_TELLDIR_PROTO> symbol,
  3862. which indicates to the C program that the system provides
  3863. a prototype for the telldir() function.  Otherwise, it is
  3864. up to the program to supply one.
  3865.  
  3866. =item C<d_time>
  3867.  
  3868. From F<d_time.U>:
  3869.  
  3870. This variable conditionally defines the C<HAS_TIME> symbol, which indicates
  3871. that the time() routine exists.  The time() routine is normaly
  3872. provided on C<UNIX> systems.
  3873.  
  3874. =item C<d_timegm>
  3875.  
  3876. From F<d_timegm.U>:
  3877.  
  3878. This variable conditionally defines the C<HAS_TIMEGM> symbol, which
  3879. indicates to the C program that the timegm () routine is available.
  3880.  
  3881. =item C<d_times>
  3882.  
  3883. From F<d_times.U>:
  3884.  
  3885. This variable conditionally defines the C<HAS_TIMES> symbol, which indicates
  3886. that the times() routine exists.  The times() routine is normaly
  3887. provided on C<UNIX> systems. You may have to include <sys/times.h>.
  3888.  
  3889. =item C<d_tm_tm_gmtoff>
  3890.  
  3891. From F<i_time.U>:
  3892.  
  3893. This variable conditionally defines C<HAS_TM_TM_GMTOFF>, which indicates
  3894. indicates to the C program that the struct tm has the tm_gmtoff field.
  3895.  
  3896. =item C<d_tm_tm_zone>
  3897.  
  3898. From F<i_time.U>:
  3899.  
  3900. This variable conditionally defines C<HAS_TM_TM_ZONE>, which indicates
  3901. indicates to the C program that the struct tm has the tm_zone field.
  3902.  
  3903. =item C<d_tmpnam_r>
  3904.  
  3905. From F<d_tmpnam_r.U>:
  3906.  
  3907. This variable conditionally defines the C<HAS_TMPNAM_R> symbol,
  3908. which indicates to the C program that the tmpnam_r()
  3909. routine is available.
  3910.  
  3911. =item C<d_truncate>
  3912.  
  3913. From F<d_truncate.U>:
  3914.  
  3915. This variable conditionally defines C<HAS_TRUNCATE> if truncate() is
  3916. available to truncate files.
  3917.  
  3918. =item C<d_ttyname_r>
  3919.  
  3920. From F<d_ttyname_r.U>:
  3921.  
  3922. This variable conditionally defines the C<HAS_TTYNAME_R> symbol,
  3923. which indicates to the C program that the ttyname_r()
  3924. routine is available.
  3925.  
  3926. =item C<d_tzname>
  3927.  
  3928. From F<d_tzname.U>:
  3929.  
  3930. This variable conditionally defines C<HAS_TZNAME> if tzname[] is
  3931. available to access timezone names.
  3932.  
  3933. =item C<d_u32align>
  3934.  
  3935. From F<d_u32align.U>:
  3936.  
  3937. This variable tells whether you must access character data
  3938. through U32-aligned pointers.
  3939.  
  3940. =item C<d_ualarm>
  3941.  
  3942. From F<d_ualarm.U>:
  3943.  
  3944. This variable conditionally defines the C<HAS_UALARM> symbol, which
  3945. indicates to the C program that the ualarm() routine is available.
  3946.  
  3947. =item C<d_umask>
  3948.  
  3949. From F<d_umask.U>:
  3950.  
  3951. This variable conditionally defines the C<HAS_UMASK> symbol, which
  3952. indicates to the C program that the umask() routine is available.
  3953. to set and get the value of the file creation mask.
  3954.  
  3955. =item C<d_uname>
  3956.  
  3957. From F<d_gethname.U>:
  3958.  
  3959. This variable conditionally defines the C<HAS_UNAME> symbol, which
  3960. indicates to the C program that the uname() routine may be
  3961. used to derive the host name.
  3962.  
  3963. =item C<d_union_semun>
  3964.  
  3965. From F<d_union_semun.U>:
  3966.  
  3967. This variable conditionally defines C<HAS_UNION_SEMUN> if the
  3968. union semun is defined by including <sys/sem.h>.
  3969.  
  3970. =item C<d_unordered>
  3971.  
  3972. From F<d_unordered.U>:
  3973.  
  3974. This variable conditionally defines the C<HAS_UNORDERED> symbol, which
  3975. indicates to the C program that the unordered() routine is available.
  3976.  
  3977. =item C<d_unsetenv>
  3978.  
  3979. From F<d_unsetenv.U>:
  3980.  
  3981. This variable conditionally defines the C<HAS_UNSETENV> symbol, which
  3982. indicates to the C program that the unsetenv () routine is available.
  3983.  
  3984. =item C<d_usleep>
  3985.  
  3986. From F<d_usleep.U>:
  3987.  
  3988. This variable conditionally defines C<HAS_USLEEP> if usleep() is
  3989. available to do high granularity sleeps.
  3990.  
  3991. =item C<d_usleepproto>
  3992.  
  3993. From F<d_usleepproto.U>:
  3994.  
  3995. This variable conditionally defines the C<HAS_USLEEP_PROTO> symbol,
  3996. which indicates to the C program that the system provides
  3997. a prototype for the usleep() function.  Otherwise, it is
  3998. up to the program to supply one.
  3999.  
  4000. =item C<d_ustat>
  4001.  
  4002. From F<d_ustat.U>:
  4003.  
  4004. This variable conditionally defines C<HAS_USTAT> if ustat() is
  4005. available to query file system statistics by dev_t.
  4006.  
  4007. =item C<d_vendorarch>
  4008.  
  4009. From F<vendorarch.U>:
  4010.  
  4011. This variable conditionally defined C<PERL_VENDORARCH>.
  4012.  
  4013. =item C<d_vendorbin>
  4014.  
  4015. From F<vendorbin.U>:
  4016.  
  4017. This variable conditionally defines C<PERL_VENDORBIN>.
  4018.  
  4019. =item C<d_vendorlib>
  4020.  
  4021. From F<vendorlib.U>:
  4022.  
  4023. This variable conditionally defines C<PERL_VENDORLIB>.
  4024.  
  4025. =item C<d_vendorscript>
  4026.  
  4027. From F<vendorscript.U>:
  4028.  
  4029. This variable conditionally defines C<PERL_VENDORSCRIPT>.
  4030.  
  4031. =item C<d_vfork>
  4032.  
  4033. From F<d_vfork.U>:
  4034.  
  4035. This variable conditionally defines the C<HAS_VFORK> symbol, which
  4036. indicates the vfork() routine is available.
  4037.  
  4038. =item C<d_void_closedir>
  4039.  
  4040. From F<d_closedir.U>:
  4041.  
  4042. This variable conditionally defines C<VOID_CLOSEDIR> if closedir()
  4043. does not return a value.
  4044.  
  4045. =item C<d_voidsig>
  4046.  
  4047. From F<d_voidsig.U>:
  4048.  
  4049. This variable conditionally defines C<VOIDSIG> if this system
  4050. declares "void (*signal(...))()" in F<signal.h>.  The old way was to
  4051. declare it as "int (*signal(...))()".
  4052.  
  4053. =item C<d_voidtty>
  4054.  
  4055. From F<i_sysioctl.U>:
  4056.  
  4057. This variable conditionally defines C<USE_IOCNOTTY> to indicate that the
  4058. ioctl() call with C<TIOCNOTTY> should be used to void tty association.
  4059. Otherwise (on C<USG> probably), it is enough to close the standard file
  4060. decriptors and do a setpgrp().
  4061.  
  4062. =item C<d_volatile>
  4063.  
  4064. From F<d_volatile.U>:
  4065.  
  4066. This variable conditionally defines the C<HASVOLATILE> symbol, which
  4067. indicates to the C program that this C compiler knows about the
  4068. volatile declaration.
  4069.  
  4070. =item C<d_vprintf>
  4071.  
  4072. From F<d_vprintf.U>:
  4073.  
  4074. This variable conditionally defines the C<HAS_VPRINTF> symbol, which
  4075. indicates to the C program that the vprintf() routine is available
  4076. to printf with a pointer to an argument list.
  4077.  
  4078. =item C<d_vsnprintf>
  4079.  
  4080. From F<d_snprintf.U>:
  4081.  
  4082. This variable conditionally defines the C<HAS_VSNPRINTF> symbol, which
  4083. indicates to the C program that the vsnprintf () library function
  4084. is available.
  4085.  
  4086. =item C<d_wait4>
  4087.  
  4088. From F<d_wait4.U>:
  4089.  
  4090. This variable conditionally defines the HAS_WAIT4 symbol, which
  4091. indicates the wait4() routine is available.
  4092.  
  4093. =item C<d_waitpid>
  4094.  
  4095. From F<d_waitpid.U>:
  4096.  
  4097. This variable conditionally defines C<HAS_WAITPID> if waitpid() is
  4098. available to wait for child process.
  4099.  
  4100. =item C<d_wcstombs>
  4101.  
  4102. From F<d_wcstombs.U>:
  4103.  
  4104. This variable conditionally defines the C<HAS_WCSTOMBS> symbol, which
  4105. indicates to the C program that the wcstombs() routine is available
  4106. to convert wide character strings to multibyte strings.
  4107.  
  4108. =item C<d_wctomb>
  4109.  
  4110. From F<d_wctomb.U>:
  4111.  
  4112. This variable conditionally defines the C<HAS_WCTOMB> symbol, which
  4113. indicates to the C program that the wctomb() routine is available
  4114. to convert a wide character to a multibyte.
  4115.  
  4116. =item C<d_writev>
  4117.  
  4118. From F<d_writev.U>:
  4119.  
  4120. This variable conditionally defines the C<HAS_WRITEV> symbol, which
  4121. indicates to the C program that the writev() routine is available.
  4122.  
  4123. =item C<d_xenix>
  4124.  
  4125. From F<Guess.U>:
  4126.  
  4127. This variable conditionally defines the symbol C<XENIX>, which alerts
  4128. the C program that it runs under Xenix.
  4129.  
  4130. =item C<date>
  4131.  
  4132. From F<Loc.U>:
  4133.  
  4134. This variable is used internally by Configure to determine the
  4135. full pathname (if any) of the date program.  After Configure runs,
  4136. the value is reset to a plain C<date> and is not useful.
  4137.  
  4138. =item C<db_hashtype>
  4139.  
  4140. From F<i_db.U>:
  4141.  
  4142. This variable contains the type of the hash structure element
  4143. in the <db.h> header file.  In older versions of C<DB>, it was
  4144. int, while in newer ones it is u_int32_t.
  4145.  
  4146. =item C<db_prefixtype>
  4147.  
  4148. From F<i_db.U>:
  4149.  
  4150. This variable contains the type of the prefix structure element
  4151. in the <db.h> header file.  In older versions of C<DB>, it was
  4152. int, while in newer ones it is size_t.
  4153.  
  4154. =item C<db_version_major>
  4155.  
  4156. From F<i_db.U>:
  4157.  
  4158. This variable contains the major version number of
  4159. Berkeley C<DB> found in the <db.h> header file.
  4160.  
  4161. =item C<db_version_minor>
  4162.  
  4163. From F<i_db.U>:
  4164.  
  4165. This variable contains the minor version number of
  4166. Berkeley C<DB> found in the <db.h> header file.
  4167. For C<DB> version 1 this is always 0.
  4168.  
  4169. =item C<db_version_patch>
  4170.  
  4171. From F<i_db.U>:
  4172.  
  4173. This variable contains the patch version number of
  4174. Berkeley C<DB> found in the <db.h> header file.
  4175. For C<DB> version 1 this is always 0.
  4176.  
  4177. =item C<defvoidused>
  4178.  
  4179. From F<voidflags.U>:
  4180.  
  4181. This variable contains the default value of the C<VOIDUSED> symbol (15).
  4182.  
  4183. =item C<direntrytype>
  4184.  
  4185. From F<i_dirent.U>:
  4186.  
  4187. This symbol is set to C<struct direct> or C<struct dirent> depending on
  4188. whether dirent is available or not. You should use this pseudo type to
  4189. portably declare your directory entries.
  4190.  
  4191. =item C<dlext>
  4192.  
  4193. From F<dlext.U>:
  4194.  
  4195. This variable contains the extension that is to be used for the
  4196. dynamically loaded modules that perl generaties.
  4197.  
  4198. =item C<dlsrc>
  4199.  
  4200. From F<dlsrc.U>:
  4201.  
  4202. This variable contains the name of the dynamic loading file that
  4203. will be used with the package.
  4204.  
  4205. =item C<doublesize>
  4206.  
  4207. From F<doublesize.U>:
  4208.  
  4209. This variable contains the value of the C<DOUBLESIZE> symbol, which
  4210. indicates to the C program how many bytes there are in a double.
  4211.  
  4212. =item C<drand01>
  4213.  
  4214. From F<randfunc.U>:
  4215.  
  4216. Indicates the macro to be used to generate normalized
  4217. random numbers.  Uses randfunc, often divided by
  4218. (double) (((unsigned long) 1 << randbits)) in order to
  4219. normalize the result.
  4220. In C programs, the macro C<Drand01> is mapped to drand01.
  4221.  
  4222. =item C<drand48_r_proto>
  4223.  
  4224. From F<d_drand48_r.U>:
  4225.  
  4226. This variable encodes the prototype of drand48_r.
  4227. It is zero if d_drand48_r is undef, and one of the
  4228. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_drand48_r
  4229. is defined.
  4230.  
  4231. =item C<dtrace>
  4232.  
  4233. From F<usedtrace.U>:
  4234.  
  4235. This variable holds the location of the dtrace executable.
  4236.  
  4237. =item C<dynamic_ext>
  4238.  
  4239. From F<Extensions.U>:
  4240.  
  4241. This variable holds a list of C<XS> extension files we want to
  4242. link dynamically into the package.  It is used by Makefile.
  4243.  
  4244. =back
  4245.  
  4246. =cut
  4247.  
  4248. =head2 e
  4249.  
  4250. =over 4
  4251.  
  4252. =cut
  4253.  
  4254. =item C<eagain>
  4255.  
  4256. From F<nblock_io.U>:
  4257.  
  4258. This variable bears the symbolic errno code set by read() when no
  4259. data is present on the file and non-blocking I/O was enabled (otherwise,
  4260. read() blocks naturally).
  4261.  
  4262. =item C<ebcdic>
  4263.  
  4264. From F<ebcdic.U>:
  4265.  
  4266. This variable conditionally defines C<EBCDIC> if this
  4267. system uses C<EBCDIC> encoding.  Among other things, this
  4268. means that the character ranges are not contiguous.
  4269. See F<trnl.U>
  4270.  
  4271. =item C<echo>
  4272.  
  4273. From F<Loc.U>:
  4274.  
  4275. This variable is used internally by Configure to determine the
  4276. full pathname (if any) of the echo program.  After Configure runs,
  4277. the value is reset to a plain C<echo> and is not useful.
  4278.  
  4279. =item C<egrep>
  4280.  
  4281. From F<Loc.U>:
  4282.  
  4283. This variable is used internally by Configure to determine the
  4284. full pathname (if any) of the egrep program.  After Configure runs,
  4285. the value is reset to a plain C<egrep> and is not useful.
  4286.  
  4287. =item C<emacs>
  4288.  
  4289. From F<Loc.U>:
  4290.  
  4291. This variable is defined but not used by Configure.
  4292. The value is the empty string and is not useful.
  4293.  
  4294. =item C<endgrent_r_proto>
  4295.  
  4296. From F<d_endgrent_r.U>:
  4297.  
  4298. This variable encodes the prototype of endgrent_r.
  4299. It is zero if d_endgrent_r is undef, and one of the
  4300. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_endgrent_r
  4301. is defined.
  4302.  
  4303. =item C<endhostent_r_proto>
  4304.  
  4305. From F<d_endhostent_r.U>:
  4306.  
  4307. This variable encodes the prototype of endhostent_r.
  4308. It is zero if d_endhostent_r is undef, and one of the
  4309. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_endhostent_r
  4310. is defined.
  4311.  
  4312. =item C<endnetent_r_proto>
  4313.  
  4314. From F<d_endnetent_r.U>:
  4315.  
  4316. This variable encodes the prototype of endnetent_r.
  4317. It is zero if d_endnetent_r is undef, and one of the
  4318. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_endnetent_r
  4319. is defined.
  4320.  
  4321. =item C<endprotoent_r_proto>
  4322.  
  4323. From F<d_endprotoent_r.U>:
  4324.  
  4325. This variable encodes the prototype of endprotoent_r.
  4326. It is zero if d_endprotoent_r is undef, and one of the
  4327. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_endprotoent_r
  4328. is defined.
  4329.  
  4330. =item C<endpwent_r_proto>
  4331.  
  4332. From F<d_endpwent_r.U>:
  4333.  
  4334. This variable encodes the prototype of endpwent_r.
  4335. It is zero if d_endpwent_r is undef, and one of the
  4336. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_endpwent_r
  4337. is defined.
  4338.  
  4339. =item C<endservent_r_proto>
  4340.  
  4341. From F<d_endservent_r.U>:
  4342.  
  4343. This variable encodes the prototype of endservent_r.
  4344. It is zero if d_endservent_r is undef, and one of the
  4345. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_endservent_r
  4346. is defined.
  4347.  
  4348. =item C<eunicefix>
  4349.  
  4350. From F<Init.U>:
  4351.  
  4352. When running under Eunice this variable contains a command which will
  4353. convert a shell script to the proper form of text file for it to be
  4354. executable by the shell.  On other systems it is a no-op.
  4355.  
  4356. =item C<exe_ext>
  4357.  
  4358. From F<Unix.U>:
  4359.  
  4360. This is an old synonym for _exe.
  4361.  
  4362. =item C<expr>
  4363.  
  4364. From F<Loc.U>:
  4365.  
  4366. This variable is used internally by Configure to determine the
  4367. full pathname (if any) of the expr program.  After Configure runs,
  4368. the value is reset to a plain C<expr> and is not useful.
  4369.  
  4370. =item C<extensions>
  4371.  
  4372. From F<Extensions.U>:
  4373.  
  4374. This variable holds a list of all extension files (both C<XS> and
  4375. non-xs linked into the package.  It is propagated to F<Config.pm>
  4376. and is typically used to test whether a particular extesion
  4377. is available.
  4378.  
  4379. =item C<extern_C>
  4380.  
  4381. From F<Csym.U>:
  4382.  
  4383. C<ANSI> C requires C<extern> where C++ requires 'extern C<C>'. This
  4384. variable can be used in Configure to do the right thing.
  4385.  
  4386. =item C<extras>
  4387.  
  4388. From F<Extras.U>:
  4389.  
  4390. This variable holds a list of extra modules to install.
  4391.  
  4392. =back
  4393.  
  4394. =cut
  4395.  
  4396. =head2 f
  4397.  
  4398. =over 4
  4399.  
  4400. =cut
  4401.  
  4402. =item C<fflushall>
  4403.  
  4404. From F<fflushall.U>:
  4405.  
  4406. This symbol, if defined, tells that to flush
  4407. all pending stdio output one must loop through all
  4408. the stdio file handles stored in an array and fflush them.
  4409. Note that if fflushNULL is defined, fflushall will not
  4410. even be probed for and will be left undefined.
  4411.  
  4412. =item C<fflushNULL>
  4413.  
  4414. From F<fflushall.U>:
  4415.  
  4416. This symbol, if defined, tells that fflush(C<NULL>) does flush
  4417. all pending stdio output.
  4418.  
  4419. =item C<find>
  4420.  
  4421. From F<Loc.U>:
  4422.  
  4423. This variable is defined but not used by Configure.
  4424. The value is the empty string and is not useful.
  4425.  
  4426. =item C<firstmakefile>
  4427.  
  4428. From F<Unix.U>:
  4429.  
  4430. This variable defines the first file searched by make.  On unix,
  4431. it is makefile (then Makefile).  On case-insensitive systems,
  4432. it might be something else.  This is only used to deal with
  4433. convoluted make depend tricks.
  4434.  
  4435. =item C<flex>
  4436.  
  4437. From F<Loc.U>:
  4438.  
  4439. This variable is defined but not used by Configure.
  4440. The value is the empty string and is not useful.
  4441.  
  4442. =item C<fpossize>
  4443.  
  4444. From F<fpossize.U>:
  4445.  
  4446. This variable contains the size of a fpostype in bytes.
  4447.  
  4448. =item C<fpostype>
  4449.  
  4450. From F<fpostype.U>:
  4451.  
  4452. This variable defines Fpos_t to be something like fpos_t, long,
  4453. uint, or whatever type is used to declare file positions in libc.
  4454.  
  4455. =item C<freetype>
  4456.  
  4457. From F<mallocsrc.U>:
  4458.  
  4459. This variable contains the return type of free().  It is usually
  4460. void, but occasionally int.
  4461.  
  4462. =item C<from>
  4463.  
  4464. From F<Cross.U>:
  4465.  
  4466. This variable contains the command used by Configure
  4467. to copy files from the target host.  Useful and available
  4468. only during Perl build.
  4469. The string C<:> if not cross-compiling.
  4470.  
  4471. =item C<full_ar>
  4472.  
  4473. From F<Loc_ar.U>:
  4474.  
  4475. This variable contains the full pathname to C<ar>, whether or
  4476. not the user has specified C<portability>.  This is only used
  4477. in the F<Makefile.SH>.
  4478.  
  4479. =item C<full_csh>
  4480.  
  4481. From F<d_csh.U>:
  4482.  
  4483. This variable contains the full pathname to C<csh>, whether or
  4484. not the user has specified C<portability>.  This is only used
  4485. in the compiled C program, and we assume that all systems which
  4486. can share this executable will have the same full pathname to
  4487. F<csh.>
  4488.  
  4489. =item C<full_sed>
  4490.  
  4491. From F<Loc_sed.U>:
  4492.  
  4493. This variable contains the full pathname to C<sed>, whether or
  4494. not the user has specified C<portability>.  This is only used
  4495. in the compiled C program, and we assume that all systems which
  4496. can share this executable will have the same full pathname to
  4497. F<sed.>
  4498.  
  4499. =back
  4500.  
  4501. =cut
  4502.  
  4503. =head2 g
  4504.  
  4505. =over 4
  4506.  
  4507. =cut
  4508.  
  4509. =item C<gccansipedantic>
  4510.  
  4511. From F<gccvers.U>:
  4512.  
  4513. If C<GNU> cc (gcc) is used, this variable will enable (if set) the
  4514. -ansi and -pedantic ccflags for building core files (through
  4515. cflags script). (See F<Porting/pumpkin.pod> for full description).
  4516.  
  4517. =item C<gccosandvers>
  4518.  
  4519. From F<gccvers.U>:
  4520.  
  4521. If C<GNU> cc (gcc) is used, this variable holds the operating system
  4522. and version used to compile gcc.  It is set to '' if not gcc,
  4523. or if nothing useful can be parsed as the os version.
  4524.  
  4525. =item C<gccversion>
  4526.  
  4527. From F<gccvers.U>:
  4528.  
  4529. If C<GNU> cc (gcc) is used, this variable holds C<1> or C<2> to
  4530. indicate whether the compiler is version 1 or 2.  This is used in
  4531. setting some of the default cflags.  It is set to '' if not gcc.
  4532.  
  4533. =item C<getgrent_r_proto>
  4534.  
  4535. From F<d_getgrent_r.U>:
  4536.  
  4537. This variable encodes the prototype of getgrent_r.
  4538. It is zero if d_getgrent_r is undef, and one of the
  4539. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getgrent_r
  4540. is defined.
  4541.  
  4542. =item C<getgrgid_r_proto>
  4543.  
  4544. From F<d_getgrgid_r.U>:
  4545.  
  4546. This variable encodes the prototype of getgrgid_r.
  4547. It is zero if d_getgrgid_r is undef, and one of the
  4548. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getgrgid_r
  4549. is defined.
  4550.  
  4551. =item C<getgrnam_r_proto>
  4552.  
  4553. From F<d_getgrnam_r.U>:
  4554.  
  4555. This variable encodes the prototype of getgrnam_r.
  4556. It is zero if d_getgrnam_r is undef, and one of the
  4557. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getgrnam_r
  4558. is defined.
  4559.  
  4560. =item C<gethostbyaddr_r_proto>
  4561.  
  4562. From F<d_gethostbyaddr_r.U>:
  4563.  
  4564. This variable encodes the prototype of gethostbyaddr_r.
  4565. It is zero if d_gethostbyaddr_r is undef, and one of the
  4566. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_gethostbyaddr_r
  4567. is defined.
  4568.  
  4569. =item C<gethostbyname_r_proto>
  4570.  
  4571. From F<d_gethostbyname_r.U>:
  4572.  
  4573. This variable encodes the prototype of gethostbyname_r.
  4574. It is zero if d_gethostbyname_r is undef, and one of the
  4575. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_gethostbyname_r
  4576. is defined.
  4577.  
  4578. =item C<gethostent_r_proto>
  4579.  
  4580. From F<d_gethostent_r.U>:
  4581.  
  4582. This variable encodes the prototype of gethostent_r.
  4583. It is zero if d_gethostent_r is undef, and one of the
  4584. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_gethostent_r
  4585. is defined.
  4586.  
  4587. =item C<getlogin_r_proto>
  4588.  
  4589. From F<d_getlogin_r.U>:
  4590.  
  4591. This variable encodes the prototype of getlogin_r.
  4592. It is zero if d_getlogin_r is undef, and one of the
  4593. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getlogin_r
  4594. is defined.
  4595.  
  4596. =item C<getnetbyaddr_r_proto>
  4597.  
  4598. From F<d_getnetbyaddr_r.U>:
  4599.  
  4600. This variable encodes the prototype of getnetbyaddr_r.
  4601. It is zero if d_getnetbyaddr_r is undef, and one of the
  4602. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getnetbyaddr_r
  4603. is defined.
  4604.  
  4605. =item C<getnetbyname_r_proto>
  4606.  
  4607. From F<d_getnetbyname_r.U>:
  4608.  
  4609. This variable encodes the prototype of getnetbyname_r.
  4610. It is zero if d_getnetbyname_r is undef, and one of the
  4611. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getnetbyname_r
  4612. is defined.
  4613.  
  4614. =item C<getnetent_r_proto>
  4615.  
  4616. From F<d_getnetent_r.U>:
  4617.  
  4618. This variable encodes the prototype of getnetent_r.
  4619. It is zero if d_getnetent_r is undef, and one of the
  4620. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getnetent_r
  4621. is defined.
  4622.  
  4623. =item C<getprotobyname_r_proto>
  4624.  
  4625. From F<d_getprotobyname_r.U>:
  4626.  
  4627. This variable encodes the prototype of getprotobyname_r.
  4628. It is zero if d_getprotobyname_r is undef, and one of the
  4629. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getprotobyname_r
  4630. is defined.
  4631.  
  4632. =item C<getprotobynumber_r_proto>
  4633.  
  4634. From F<d_getprotobynumber_r.U>:
  4635.  
  4636. This variable encodes the prototype of getprotobynumber_r.
  4637. It is zero if d_getprotobynumber_r is undef, and one of the
  4638. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getprotobynumber_r
  4639. is defined.
  4640.  
  4641. =item C<getprotoent_r_proto>
  4642.  
  4643. From F<d_getprotoent_r.U>:
  4644.  
  4645. This variable encodes the prototype of getprotoent_r.
  4646. It is zero if d_getprotoent_r is undef, and one of the
  4647. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getprotoent_r
  4648. is defined.
  4649.  
  4650. =item C<getpwent_r_proto>
  4651.  
  4652. From F<d_getpwent_r.U>:
  4653.  
  4654. This variable encodes the prototype of getpwent_r.
  4655. It is zero if d_getpwent_r is undef, and one of the
  4656. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getpwent_r
  4657. is defined.
  4658.  
  4659. =item C<getpwnam_r_proto>
  4660.  
  4661. From F<d_getpwnam_r.U>:
  4662.  
  4663. This variable encodes the prototype of getpwnam_r.
  4664. It is zero if d_getpwnam_r is undef, and one of the
  4665. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getpwnam_r
  4666. is defined.
  4667.  
  4668. =item C<getpwuid_r_proto>
  4669.  
  4670. From F<d_getpwuid_r.U>:
  4671.  
  4672. This variable encodes the prototype of getpwuid_r.
  4673. It is zero if d_getpwuid_r is undef, and one of the
  4674. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getpwuid_r
  4675. is defined.
  4676.  
  4677. =item C<getservbyname_r_proto>
  4678.  
  4679. From F<d_getservbyname_r.U>:
  4680.  
  4681. This variable encodes the prototype of getservbyname_r.
  4682. It is zero if d_getservbyname_r is undef, and one of the
  4683. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getservbyname_r
  4684. is defined.
  4685.  
  4686. =item C<getservbyport_r_proto>
  4687.  
  4688. From F<d_getservbyport_r.U>:
  4689.  
  4690. This variable encodes the prototype of getservbyport_r.
  4691. It is zero if d_getservbyport_r is undef, and one of the
  4692. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getservbyport_r
  4693. is defined.
  4694.  
  4695. =item C<getservent_r_proto>
  4696.  
  4697. From F<d_getservent_r.U>:
  4698.  
  4699. This variable encodes the prototype of getservent_r.
  4700. It is zero if d_getservent_r is undef, and one of the
  4701. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getservent_r
  4702. is defined.
  4703.  
  4704. =item C<getspnam_r_proto>
  4705.  
  4706. From F<d_getspnam_r.U>:
  4707.  
  4708. This variable encodes the prototype of getspnam_r.
  4709. It is zero if d_getspnam_r is undef, and one of the
  4710. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getspnam_r
  4711. is defined.
  4712.  
  4713. =item C<gidformat>
  4714.  
  4715. From F<gidf.U>:
  4716.  
  4717. This variable contains the format string used for printing a Gid_t.
  4718.  
  4719. =item C<gidsign>
  4720.  
  4721. From F<gidsign.U>:
  4722.  
  4723. This variable contains the signedness of a gidtype.
  4724. 1 for unsigned, -1 for signed.
  4725.  
  4726. =item C<gidsize>
  4727.  
  4728. From F<gidsize.U>:
  4729.  
  4730. This variable contains the size of a gidtype in bytes.
  4731.  
  4732. =item C<gidtype>
  4733.  
  4734. From F<gidtype.U>:
  4735.  
  4736. This variable defines Gid_t to be something like gid_t, int,
  4737. ushort, or whatever type is used to declare the return type
  4738. of getgid().  Typically, it is the type of group ids in the kernel.
  4739.  
  4740. =item C<glibpth>
  4741.  
  4742. From F<libpth.U>:
  4743.  
  4744. This variable holds the general path (space-separated) used to
  4745. find libraries.  It may contain directories that do not exist on
  4746. this platform, libpth is the cleaned-up version.
  4747.  
  4748. =item C<gmake>
  4749.  
  4750. From F<Loc.U>:
  4751.  
  4752. This variable is used internally by Configure to determine the
  4753. full pathname (if any) of the gmake program.  After Configure runs,
  4754. the value is reset to a plain C<gmake> and is not useful.
  4755.  
  4756. =item C<gmtime_r_proto>
  4757.  
  4758. From F<d_gmtime_r.U>:
  4759.  
  4760. This variable encodes the prototype of gmtime_r.
  4761. It is zero if d_gmtime_r is undef, and one of the
  4762. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_gmtime_r
  4763. is defined.
  4764.  
  4765. =item C<gnulibc_version>
  4766.  
  4767. From F<d_gnulibc.U>:
  4768.  
  4769. This variable contains the version number of the C<GNU> C library.
  4770. It is usually something like F<2.2.5>.  It is a plain '' if this
  4771. is not the C<GNU> C library, or if the version is unknown.
  4772.  
  4773. =item C<grep>
  4774.  
  4775. From F<Loc.U>:
  4776.  
  4777. This variable is used internally by Configure to determine the
  4778. full pathname (if any) of the grep program.  After Configure runs,
  4779. the value is reset to a plain C<grep> and is not useful.
  4780.  
  4781. =item C<groupcat>
  4782.  
  4783. From F<nis.U>:
  4784.  
  4785. This variable contains a command that produces the text of the
  4786. F</etc/group> file.  This is normally "cat F</etc/group>", but can be
  4787. "ypcat group" when C<NIS> is used.
  4788. On some systems, such as os390, there may be no equivalent
  4789. command, in which case this variable is unset.
  4790.  
  4791. =item C<groupstype>
  4792.  
  4793. From F<groupstype.U>:
  4794.  
  4795. This variable defines Groups_t to be something like gid_t, int,
  4796. ushort, or whatever type is used for the second argument to
  4797. getgroups() and setgroups().  Usually, this is the same as
  4798. gidtype (gid_t), but sometimes it isn't.
  4799.  
  4800. =item C<gzip>
  4801.  
  4802. From F<Loc.U>:
  4803.  
  4804. This variable is used internally by Configure to determine the
  4805. full pathname (if any) of the gzip program.  After Configure runs,
  4806. the value is reset to a plain C<gzip> and is not useful.
  4807.  
  4808. =back
  4809.  
  4810. =cut
  4811.  
  4812. =head2 h
  4813.  
  4814. =over 4
  4815.  
  4816. =cut
  4817.  
  4818. =item C<h_fcntl>
  4819.  
  4820. From F<h_fcntl.U>:
  4821.  
  4822. This is variable gets set in various places to tell i_fcntl that
  4823. <fcntl.h> should be included.
  4824.  
  4825. =item C<h_sysfile>
  4826.  
  4827. From F<h_sysfile.U>:
  4828.  
  4829. This is variable gets set in various places to tell i_sys_file that
  4830. <sys/file.h> should be included.
  4831.  
  4832. =item C<hint>
  4833.  
  4834. From F<Oldconfig.U>:
  4835.  
  4836. Gives the type of hints used for previous answers. May be one of
  4837. C<default>, C<recommended> or C<previous>.
  4838.  
  4839. =item C<hostcat>
  4840.  
  4841. From F<nis.U>:
  4842.  
  4843. This variable contains a command that produces the text of the
  4844. F</etc/hosts> file.  This is normally "cat F</etc/hosts>", but can be
  4845. "ypcat hosts" when C<NIS> is used.
  4846. On some systems, such as os390, there may be no equivalent
  4847. command, in which case this variable is unset.
  4848.  
  4849. =item C<html1dir>
  4850.  
  4851. From F<html1dir.U>:
  4852.  
  4853. This variable contains the name of the directory in which html
  4854. source pages are to be put.  This directory is for pages
  4855. that describe whole programs, not libraries or modules.  It
  4856. is intended to correspond roughly to section 1 of the Unix
  4857. manuals.
  4858.  
  4859. =item C<html1direxp>
  4860.  
  4861. From F<html1dir.U>:
  4862.  
  4863. This variable is the same as the html1dir variable, but is filename
  4864. expanded at configuration time, for convenient use in makefiles.
  4865.  
  4866. =item C<html3dir>
  4867.  
  4868. From F<html3dir.U>:
  4869.  
  4870. This variable contains the name of the directory in which html
  4871. source pages are to be put.  This directory is for pages
  4872. that describe libraries or modules.  It is intended to
  4873. correspond roughly to section 3 of the Unix manuals.
  4874.  
  4875. =item C<html3direxp>
  4876.  
  4877. From F<html3dir.U>:
  4878.  
  4879. This variable is the same as the html3dir variable, but is filename
  4880. expanded at configuration time, for convenient use in makefiles.
  4881.  
  4882. =back
  4883.  
  4884. =cut
  4885.  
  4886. =head2 i
  4887.  
  4888. =over 4
  4889.  
  4890. =cut
  4891.  
  4892. =item C<i16size>
  4893.  
  4894. From F<perlxv.U>:
  4895.  
  4896. This variable is the size of an I16 in bytes.
  4897.  
  4898. =item C<i16type>
  4899.  
  4900. From F<perlxv.U>:
  4901.  
  4902. This variable contains the C type used for Perl's I16.
  4903.  
  4904. =item C<i32size>
  4905.  
  4906. From F<perlxv.U>:
  4907.  
  4908. This variable is the size of an I32 in bytes.
  4909.  
  4910. =item C<i32type>
  4911.  
  4912. From F<perlxv.U>:
  4913.  
  4914. This variable contains the C type used for Perl's I32.
  4915.  
  4916. =item C<i64size>
  4917.  
  4918. From F<perlxv.U>:
  4919.  
  4920. This variable is the size of an I64 in bytes.
  4921.  
  4922. =item C<i64type>
  4923.  
  4924. From F<perlxv.U>:
  4925.  
  4926. This variable contains the C type used for Perl's I64.
  4927.  
  4928. =item C<i8size>
  4929.  
  4930. From F<perlxv.U>:
  4931.  
  4932. This variable is the size of an I8 in bytes.
  4933.  
  4934. =item C<i8type>
  4935.  
  4936. From F<perlxv.U>:
  4937.  
  4938. This variable contains the C type used for Perl's I8.
  4939.  
  4940. =item C<i_arpainet>
  4941.  
  4942. From F<i_arpainet.U>:
  4943.  
  4944. This variable conditionally defines the C<I_ARPA_INET> symbol,
  4945. and indicates whether a C program should include <arpa/inet.h>.
  4946.  
  4947. =item C<i_assert>
  4948.  
  4949. From F<i_assert.U>:
  4950.  
  4951. This variable conditionally defines the C<I_ASSERT> symbol, which
  4952. indicates to the C program that <assert.h> exists and could be
  4953. included.
  4954.  
  4955. =item C<i_bsdioctl>
  4956.  
  4957. From F<i_sysioctl.U>:
  4958.  
  4959. This variable conditionally defines the C<I_SYS_BSDIOCTL> symbol, which
  4960. indicates to the C program that <sys/bsdioctl.h> exists and should
  4961. be included.
  4962.  
  4963. =item C<i_crypt>
  4964.  
  4965. From F<i_crypt.U>:
  4966.  
  4967. This variable conditionally defines the C<I_CRYPT> symbol, and indicates
  4968. whether a C program should include <crypt.h>.
  4969.  
  4970. =item C<i_db>
  4971.  
  4972. From F<i_db.U>:
  4973.  
  4974. This variable conditionally defines the C<I_DB> symbol, and indicates
  4975. whether a C program may include Berkeley's C<DB> include file <db.h>.
  4976.  
  4977. =item C<i_dbm>
  4978.  
  4979. From F<i_dbm.U>:
  4980.  
  4981. This variable conditionally defines the C<I_DBM> symbol, which
  4982. indicates to the C program that <dbm.h> exists and should
  4983. be included.
  4984.  
  4985. =item C<i_dirent>
  4986.  
  4987. From F<i_dirent.U>:
  4988.  
  4989. This variable conditionally defines C<I_DIRENT>, which indicates
  4990. to the C program that it should include <dirent.h>.
  4991.  
  4992. =item C<i_dld>
  4993.  
  4994. From F<i_dld.U>:
  4995.  
  4996. This variable conditionally defines the C<I_DLD> symbol, which
  4997. indicates to the C program that <dld.h> (C<GNU> dynamic loading)
  4998. exists and should be included.
  4999.  
  5000. =item C<i_dlfcn>
  5001.  
  5002. From F<i_dlfcn.U>:
  5003.  
  5004. This variable conditionally defines the C<I_DLFCN> symbol, which
  5005. indicates to the C program that <dlfcn.h> exists and should
  5006. be included.
  5007.  
  5008. =item C<i_fcntl>
  5009.  
  5010. From F<i_fcntl.U>:
  5011.  
  5012. This variable controls the value of C<I_FCNTL> (which tells
  5013. the C program to include <fcntl.h>).
  5014.  
  5015. =item C<i_float>
  5016.  
  5017. From F<i_float.U>:
  5018.  
  5019. This variable conditionally defines the C<I_FLOAT> symbol, and indicates
  5020. whether a C program may include <float.h> to get symbols like C<DBL_MAX>
  5021. or C<DBL_MIN>, F<i.e>. machine dependent floating point values.
  5022.  
  5023. =item C<i_fp>
  5024.  
  5025. From F<i_fp.U>:
  5026.  
  5027. This variable conditionally defines the C<I_FP> symbol, and indicates
  5028. whether a C program should include <fp.h>.
  5029.  
  5030. =item C<i_fp_class>
  5031.  
  5032. From F<i_fp_class.U>:
  5033.  
  5034. This variable conditionally defines the C<I_FP_CLASS> symbol, and indicates
  5035. whether a C program should include <fp_class.h>.
  5036.  
  5037. =item C<i_gdbm>
  5038.  
  5039. From F<i_gdbm.U>:
  5040.  
  5041. This variable conditionally defines the C<I_GDBM> symbol, which
  5042. indicates to the C program that <gdbm.h> exists and should
  5043. be included.
  5044.  
  5045. =item C<i_gdbm_ndbm>
  5046.  
  5047. From F<i_ndbm.U>:
  5048.  
  5049. This variable conditionally defines the C<I_GDBM_NDBM> symbol, which
  5050. indicates to the C program that <gdbm-F<ndbm.h>> exists and should
  5051. be included.  This is the location of the F<ndbm.h> compatibility file
  5052. in Debian 4.0.
  5053.  
  5054. =item C<i_gdbmndbm>
  5055.  
  5056. From F<i_ndbm.U>:
  5057.  
  5058. This variable conditionally defines the C<I_GDBMNDBM> symbol, which
  5059. indicates to the C program that <gdbm/ndbm.h> exists and should
  5060. be included.  This was the location of the F<ndbm.h> compatibility file
  5061. in RedHat 7.1.
  5062.  
  5063. =item C<i_grp>
  5064.  
  5065. From F<i_grp.U>:
  5066.  
  5067. This variable conditionally defines the C<I_GRP> symbol, and indicates
  5068. whether a C program should include <grp.h>.
  5069.  
  5070. =item C<i_ieeefp>
  5071.  
  5072. From F<i_ieeefp.U>:
  5073.  
  5074. This variable conditionally defines the C<I_IEEEFP> symbol, and indicates
  5075. whether a C program should include <ieeefp.h>.
  5076.  
  5077. =item C<i_inttypes>
  5078.  
  5079. From F<i_inttypes.U>:
  5080.  
  5081. This variable conditionally defines the C<I_INTTYPES> symbol,
  5082. and indicates whether a C program should include <inttypes.h>.
  5083.  
  5084. =item C<i_langinfo>
  5085.  
  5086. From F<i_langinfo.U>:
  5087.  
  5088. This variable conditionally defines the C<I_LANGINFO> symbol,
  5089. and indicates whether a C program should include <langinfo.h>.
  5090.  
  5091. =item C<i_libutil>
  5092.  
  5093. From F<i_libutil.U>:
  5094.  
  5095. This variable conditionally defines the C<I_LIBUTIL> symbol, and indicates
  5096. whether a C program should include <libutil.h>.
  5097.  
  5098. =item C<i_limits>
  5099.  
  5100. From F<i_limits.U>:
  5101.  
  5102. This variable conditionally defines the C<I_LIMITS> symbol, and indicates
  5103. whether a C program may include <limits.h> to get symbols like C<WORD_BIT>
  5104. and friends.
  5105.  
  5106. =item C<i_locale>
  5107.  
  5108. From F<i_locale.U>:
  5109.  
  5110. This variable conditionally defines the C<I_LOCALE> symbol,
  5111. and indicates whether a C program should include <locale.h>.
  5112.  
  5113. =item C<i_machcthr>
  5114.  
  5115. From F<i_machcthr.U>:
  5116.  
  5117. This variable conditionally defines the C<I_MACH_CTHREADS> symbol,
  5118. and indicates whether a C program should include <mach/cthreads.h>.
  5119.  
  5120. =item C<i_malloc>
  5121.  
  5122. From F<i_malloc.U>:
  5123.  
  5124. This variable conditionally defines the C<I_MALLOC> symbol, and indicates
  5125. whether a C program should include <malloc.h>.
  5126.  
  5127. =item C<i_mallocmalloc>
  5128.  
  5129. From F<i_mallocmalloc.U>:
  5130.  
  5131. This variable conditionally defines the C<I_MALLOCMALLOC> symbol,
  5132. and indicates whether a C program should include <malloc/malloc.h>.
  5133.  
  5134. =item C<i_math>
  5135.  
  5136. From F<i_math.U>:
  5137.  
  5138. This variable conditionally defines the C<I_MATH> symbol, and indicates
  5139. whether a C program may include <math.h>.
  5140.  
  5141. =item C<i_memory>
  5142.  
  5143. From F<i_memory.U>:
  5144.  
  5145. This variable conditionally defines the C<I_MEMORY> symbol, and indicates
  5146. whether a C program should include <memory.h>.
  5147.  
  5148. =item C<i_mntent>
  5149.  
  5150. From F<i_mntent.U>:
  5151.  
  5152. This variable conditionally defines the C<I_MNTENT> symbol, and indicates
  5153. whether a C program should include <mntent.h>.
  5154.  
  5155. =item C<i_ndbm>
  5156.  
  5157. From F<i_ndbm.U>:
  5158.  
  5159. This variable conditionally defines the C<I_NDBM> symbol, which
  5160. indicates to the C program that <ndbm.h> exists and should
  5161. be included.
  5162.  
  5163. =item C<i_netdb>
  5164.  
  5165. From F<i_netdb.U>:
  5166.  
  5167. This variable conditionally defines the C<I_NETDB> symbol, and indicates
  5168. whether a C program should include <netdb.h>.
  5169.  
  5170. =item C<i_neterrno>
  5171.  
  5172. From F<i_neterrno.U>:
  5173.  
  5174. This variable conditionally defines the C<I_NET_ERRNO> symbol, which
  5175. indicates to the C program that <net/errno.h> exists and should
  5176. be included.
  5177.  
  5178. =item C<i_netinettcp>
  5179.  
  5180. From F<i_netinettcp.U>:
  5181.  
  5182. This variable conditionally defines the C<I_NETINET_TCP> symbol,
  5183. and indicates whether a C program should include <netinet/tcp.h>.
  5184.  
  5185. =item C<i_niin>
  5186.  
  5187. From F<i_niin.U>:
  5188.  
  5189. This variable conditionally defines C<I_NETINET_IN>, which indicates
  5190. to the C program that it should include <netinet/in.h>. Otherwise,
  5191. you may try <sys/in.h>.
  5192.  
  5193. =item C<i_poll>
  5194.  
  5195. From F<i_poll.U>:
  5196.  
  5197. This variable conditionally defines the C<I_POLL> symbol, and indicates
  5198. whether a C program should include <poll.h>.
  5199.  
  5200. =item C<i_prot>
  5201.  
  5202. From F<i_prot.U>:
  5203.  
  5204. This variable conditionally defines the C<I_PROT> symbol, and indicates
  5205. whether a C program should include <prot.h>.
  5206.  
  5207. =item C<i_pthread>
  5208.  
  5209. From F<i_pthread.U>:
  5210.  
  5211. This variable conditionally defines the C<I_PTHREAD> symbol,
  5212. and indicates whether a C program should include <pthread.h>.
  5213.  
  5214. =item C<i_pwd>
  5215.  
  5216. From F<i_pwd.U>:
  5217.  
  5218. This variable conditionally defines C<I_PWD>, which indicates
  5219. to the C program that it should include <pwd.h>.
  5220.  
  5221. =item C<i_rpcsvcdbm>
  5222.  
  5223. From F<i_dbm.U>:
  5224.  
  5225. This variable conditionally defines the C<I_RPCSVC_DBM> symbol, which
  5226. indicates to the C program that <rpcsvc/dbm.h> exists and should
  5227. be included.  Some System V systems might need this instead of <dbm.h>.
  5228.  
  5229. =item C<i_sfio>
  5230.  
  5231. From F<i_sfio.U>:
  5232.  
  5233. This variable conditionally defines the C<I_SFIO> symbol,
  5234. and indicates whether a C program should include <sfio.h>.
  5235.  
  5236. =item C<i_sgtty>
  5237.  
  5238. From F<i_termio.U>:
  5239.  
  5240. This variable conditionally defines the C<I_SGTTY> symbol, which
  5241. indicates to the C program that it should include <sgtty.h> rather
  5242. than <termio.h>.
  5243.  
  5244. =item C<i_shadow>
  5245.  
  5246. From F<i_shadow.U>:
  5247.  
  5248. This variable conditionally defines the C<I_SHADOW> symbol, and indicates
  5249. whether a C program should include <shadow.h>.
  5250.  
  5251. =item C<i_socks>
  5252.  
  5253. From F<i_socks.U>:
  5254.  
  5255. This variable conditionally defines the C<I_SOCKS> symbol, and indicates
  5256. whether a C program should include <socks.h>.
  5257.  
  5258. =item C<i_stdarg>
  5259.  
  5260. From F<i_varhdr.U>:
  5261.  
  5262. This variable conditionally defines the C<I_STDARG> symbol, which
  5263. indicates to the C program that <stdarg.h> exists and should
  5264. be included.
  5265.  
  5266. =item C<i_stddef>
  5267.  
  5268. From F<i_stddef.U>:
  5269.  
  5270. This variable conditionally defines the C<I_STDDEF> symbol, which
  5271. indicates to the C program that <stddef.h> exists and should
  5272. be included.
  5273.  
  5274. =item C<i_stdlib>
  5275.  
  5276. From F<i_stdlib.U>:
  5277.  
  5278. This variable conditionally defines the C<I_STDLIB> symbol, which
  5279. indicates to the C program that <stdlib.h> exists and should
  5280. be included.
  5281.  
  5282. =item C<i_string>
  5283.  
  5284. From F<i_string.U>:
  5285.  
  5286. This variable conditionally defines the C<I_STRING> symbol, which
  5287. indicates that <string.h> should be included rather than <strings.h>.
  5288.  
  5289. =item C<i_sunmath>
  5290.  
  5291. From F<i_sunmath.U>:
  5292.  
  5293. This variable conditionally defines the C<I_SUNMATH> symbol, and indicates
  5294. whether a C program should include <sunmath.h>.
  5295.  
  5296. =item C<i_sysaccess>
  5297.  
  5298. From F<i_sysaccess.U>:
  5299.  
  5300. This variable conditionally defines the C<I_SYS_ACCESS> symbol,
  5301. and indicates whether a C program should include <sys/access.h>.
  5302.  
  5303. =item C<i_sysdir>
  5304.  
  5305. From F<i_sysdir.U>:
  5306.  
  5307. This variable conditionally defines the C<I_SYS_DIR> symbol, and indicates
  5308. whether a C program should include <sys/dir.h>.
  5309.  
  5310. =item C<i_sysfile>
  5311.  
  5312. From F<i_sysfile.U>:
  5313.  
  5314. This variable conditionally defines the C<I_SYS_FILE> symbol, and indicates
  5315. whether a C program should include <sys/file.h> to get C<R_OK> and friends.
  5316.  
  5317. =item C<i_sysfilio>
  5318.  
  5319. From F<i_sysioctl.U>:
  5320.  
  5321. This variable conditionally defines the C<I_SYS_FILIO> symbol, which
  5322. indicates to the C program that <sys/filio.h> exists and should
  5323. be included in preference to <sys/ioctl.h>.
  5324.  
  5325. =item C<i_sysin>
  5326.  
  5327. From F<i_niin.U>:
  5328.  
  5329. This variable conditionally defines C<I_SYS_IN>, which indicates
  5330. to the C program that it should include <sys/in.h> instead of
  5331. <netinet/in.h>.
  5332.  
  5333. =item C<i_sysioctl>
  5334.  
  5335. From F<i_sysioctl.U>:
  5336.  
  5337. This variable conditionally defines the C<I_SYS_IOCTL> symbol, which
  5338. indicates to the C program that <sys/ioctl.h> exists and should
  5339. be included.
  5340.  
  5341. =item C<i_syslog>
  5342.  
  5343. From F<i_syslog.U>:
  5344.  
  5345. This variable conditionally defines the C<I_SYSLOG> symbol,
  5346. and indicates whether a C program should include <syslog.h>.
  5347.  
  5348. =item C<i_sysmman>
  5349.  
  5350. From F<i_sysmman.U>:
  5351.  
  5352. This variable conditionally defines the C<I_SYS_MMAN> symbol, and
  5353. indicates whether a C program should include <sys/mman.h>.
  5354.  
  5355. =item C<i_sysmode>
  5356.  
  5357. From F<i_sysmode.U>:
  5358.  
  5359. This variable conditionally defines the C<I_SYSMODE> symbol,
  5360. and indicates whether a C program should include <sys/mode.h>.
  5361.  
  5362. =item C<i_sysmount>
  5363.  
  5364. From F<i_sysmount.U>:
  5365.  
  5366. This variable conditionally defines the C<I_SYSMOUNT> symbol,
  5367. and indicates whether a C program should include <sys/mount.h>.
  5368.  
  5369. =item C<i_sysndir>
  5370.  
  5371. From F<i_sysndir.U>:
  5372.  
  5373. This variable conditionally defines the C<I_SYS_NDIR> symbol, and indicates
  5374. whether a C program should include <sys/ndir.h>.
  5375.  
  5376. =item C<i_sysparam>
  5377.  
  5378. From F<i_sysparam.U>:
  5379.  
  5380. This variable conditionally defines the C<I_SYS_PARAM> symbol, and indicates
  5381. whether a C program should include <sys/param.h>.
  5382.  
  5383. =item C<i_syspoll>
  5384.  
  5385. From F<i_syspoll.U>:
  5386.  
  5387. This variable conditionally defines the C<I_SYS_POLL> symbol, which
  5388. indicates to the C program that it should include <sys/poll.h>.
  5389.  
  5390. =item C<i_sysresrc>
  5391.  
  5392. From F<i_sysresrc.U>:
  5393.  
  5394. This variable conditionally defines the C<I_SYS_RESOURCE> symbol,
  5395. and indicates whether a C program should include <sys/resource.h>.
  5396.  
  5397. =item C<i_syssecrt>
  5398.  
  5399. From F<i_syssecrt.U>:
  5400.  
  5401. This variable conditionally defines the C<I_SYS_SECURITY> symbol,
  5402. and indicates whether a C program should include <sys/security.h>.
  5403.  
  5404. =item C<i_sysselct>
  5405.  
  5406. From F<i_sysselct.U>:
  5407.  
  5408. This variable conditionally defines C<I_SYS_SELECT>, which indicates
  5409. to the C program that it should include <sys/select.h> in order to
  5410. get the definition of struct timeval.
  5411.  
  5412. =item C<i_syssockio>
  5413.  
  5414. From F<i_sysioctl.U>:
  5415.  
  5416. This variable conditionally defines C<I_SYS_SOCKIO> to indicate to the
  5417. C program that socket ioctl codes may be found in <sys/sockio.h>
  5418. instead of <sys/ioctl.h>.
  5419.  
  5420. =item C<i_sysstat>
  5421.  
  5422. From F<i_sysstat.U>:
  5423.  
  5424. This variable conditionally defines the C<I_SYS_STAT> symbol,
  5425. and indicates whether a C program should include <sys/stat.h>.
  5426.  
  5427. =item C<i_sysstatfs>
  5428.  
  5429. From F<i_sysstatfs.U>:
  5430.  
  5431. This variable conditionally defines the C<I_SYSSTATFS> symbol,
  5432. and indicates whether a C program should include <sys/statfs.h>.
  5433.  
  5434. =item C<i_sysstatvfs>
  5435.  
  5436. From F<i_sysstatvfs.U>:
  5437.  
  5438. This variable conditionally defines the C<I_SYSSTATVFS> symbol,
  5439. and indicates whether a C program should include <sys/statvfs.h>.
  5440.  
  5441. =item C<i_systime>
  5442.  
  5443. From F<i_time.U>:
  5444.  
  5445. This variable conditionally defines C<I_SYS_TIME>, which indicates
  5446. to the C program that it should include <sys/time.h>.
  5447.  
  5448. =item C<i_systimek>
  5449.  
  5450. From F<i_time.U>:
  5451.  
  5452. This variable conditionally defines C<I_SYS_TIME_KERNEL>, which
  5453. indicates to the C program that it should include <sys/time.h>
  5454. with C<KERNEL> defined.
  5455.  
  5456. =item C<i_systimes>
  5457.  
  5458. From F<i_systimes.U>:
  5459.  
  5460. This variable conditionally defines the C<I_SYS_TIMES> symbol, and indicates
  5461. whether a C program should include <sys/times.h>.
  5462.  
  5463. =item C<i_systypes>
  5464.  
  5465. From F<i_systypes.U>:
  5466.  
  5467. This variable conditionally defines the C<I_SYS_TYPES> symbol,
  5468. and indicates whether a C program should include <sys/types.h>.
  5469.  
  5470. =item C<i_sysuio>
  5471.  
  5472. From F<i_sysuio.U>:
  5473.  
  5474. This variable conditionally defines the C<I_SYSUIO> symbol, and indicates
  5475. whether a C program should include <sys/uio.h>.
  5476.  
  5477. =item C<i_sysun>
  5478.  
  5479. From F<i_sysun.U>:
  5480.  
  5481. This variable conditionally defines C<I_SYS_UN>, which indicates
  5482. to the C program that it should include <sys/un.h> to get C<UNIX>
  5483. domain socket definitions.
  5484.  
  5485. =item C<i_sysutsname>
  5486.  
  5487. From F<i_sysutsname.U>:
  5488.  
  5489. This variable conditionally defines the C<I_SYSUTSNAME> symbol,
  5490. and indicates whether a C program should include <sys/utsname.h>.
  5491.  
  5492. =item C<i_sysvfs>
  5493.  
  5494. From F<i_sysvfs.U>:
  5495.  
  5496. This variable conditionally defines the C<I_SYSVFS> symbol,
  5497. and indicates whether a C program should include <sys/vfs.h>.
  5498.  
  5499. =item C<i_syswait>
  5500.  
  5501. From F<i_syswait.U>:
  5502.  
  5503. This variable conditionally defines C<I_SYS_WAIT>, which indicates
  5504. to the C program that it should include <sys/wait.h>.
  5505.  
  5506. =item C<i_termio>
  5507.  
  5508. From F<i_termio.U>:
  5509.  
  5510. This variable conditionally defines the C<I_TERMIO> symbol, which
  5511. indicates to the C program that it should include <termio.h> rather
  5512. than <sgtty.h>.
  5513.  
  5514. =item C<i_termios>
  5515.  
  5516. From F<i_termio.U>:
  5517.  
  5518. This variable conditionally defines the C<I_TERMIOS> symbol, which
  5519. indicates to the C program that the C<POSIX> <termios.h> file is
  5520. to be included.
  5521.  
  5522. =item C<i_time>
  5523.  
  5524. From F<i_time.U>:
  5525.  
  5526. This variable conditionally defines C<I_TIME>, which indicates
  5527. to the C program that it should include <time.h>.
  5528.  
  5529. =item C<i_unistd>
  5530.  
  5531. From F<i_unistd.U>:
  5532.  
  5533. This variable conditionally defines the C<I_UNISTD> symbol, and indicates
  5534. whether a C program should include <unistd.h>.
  5535.  
  5536. =item C<i_ustat>
  5537.  
  5538. From F<i_ustat.U>:
  5539.  
  5540. This variable conditionally defines the C<I_USTAT> symbol, and indicates
  5541. whether a C program should include <ustat.h>.
  5542.  
  5543. =item C<i_utime>
  5544.  
  5545. From F<i_utime.U>:
  5546.  
  5547. This variable conditionally defines the C<I_UTIME> symbol, and indicates
  5548. whether a C program should include <utime.h>.
  5549.  
  5550. =item C<i_values>
  5551.  
  5552. From F<i_values.U>:
  5553.  
  5554. This variable conditionally defines the C<I_VALUES> symbol, and indicates
  5555. whether a C program may include <values.h> to get symbols like C<MAXLONG>
  5556. and friends.
  5557.  
  5558. =item C<i_varargs>
  5559.  
  5560. From F<i_varhdr.U>:
  5561.  
  5562. This variable conditionally defines C<I_VARARGS>, which indicates
  5563. to the C program that it should include <varargs.h>.
  5564.  
  5565. =item C<i_varhdr>
  5566.  
  5567. From F<i_varhdr.U>:
  5568.  
  5569. Contains the name of the header to be included to get va_dcl definition.
  5570. Typically one of F<varargs.h> or F<stdarg.h>.
  5571.  
  5572. =item C<i_vfork>
  5573.  
  5574. From F<i_vfork.U>:
  5575.  
  5576. This variable conditionally defines the C<I_VFORK> symbol, and indicates
  5577. whether a C program should include F<vfork.h>.
  5578.  
  5579. =item C<ignore_versioned_solibs>
  5580.  
  5581. From F<libs.U>:
  5582.  
  5583. This variable should be non-empty if non-versioned shared
  5584. libraries (F<libfoo.so.x.y>) are to be ignored (because they
  5585. cannot be linked against).
  5586.  
  5587. =item C<inc_version_list>
  5588.  
  5589. From F<inc_version_list.U>:
  5590.  
  5591. This variable specifies the list of subdirectories in over
  5592. which F<perl.c>:incpush() and F<lib/lib.pm> will automatically
  5593. search when adding directories to @C<INC>.  The elements in
  5594. the list are separated by spaces.  This is only useful
  5595. if you have a perl library directory tree structured like the
  5596. default one.  See C<INSTALL> for how this works.  The versioned
  5597. site_perl directory was introduced in 5.005, so that is the
  5598. lowest possible value.
  5599.  
  5600. This list includes architecture-dependent directories back to
  5601. version $api_versionstring (e.g. 5.5.640) and
  5602. architecture-independent directories all the way back to
  5603. 5.005.
  5604.  
  5605. =item C<inc_version_list_init>
  5606.  
  5607. From F<inc_version_list.U>:
  5608.  
  5609. This variable holds the same list as inc_version_list, but
  5610. each item is enclosed in double quotes and separated by commas,
  5611. suitable for use in the C<PERL_INC_VERSION_LIST> initialization.
  5612.  
  5613. =item C<incpath>
  5614.  
  5615. From F<usrinc.U>:
  5616.  
  5617. This variable must preceed the normal include path to get hte
  5618. right one, as in F<$F<incpath/usr/include>> or F<$F<incpath/usr/lib>>.
  5619. Value can be "" or F</bsd43> on mips.
  5620.  
  5621. =item C<inews>
  5622.  
  5623. From F<Loc.U>:
  5624.  
  5625. This variable is defined but not used by Configure.
  5626. The value is the empty string and is not useful.
  5627.  
  5628. =item C<initialinstalllocation>
  5629.  
  5630. From F<bin.U>:
  5631.  
  5632. When userelocatableinc is true, this variable holds the location
  5633. that make install should copy the perl binary to, with all the
  5634. run-time relocatable paths calculated from this at install time.
  5635. When used, it is initialised to the original value of binexp, and
  5636. then binexp is set to F<.../>, as the other binaries are found
  5637. relative to the perl binary.
  5638.  
  5639. =item C<installarchlib>
  5640.  
  5641. From F<archlib.U>:
  5642.  
  5643. This variable is really the same as archlibexp but may differ on
  5644. those systems using C<AFS>. For extra portability, only this variable
  5645. should be used in makefiles.
  5646.  
  5647. =item C<installbin>
  5648.  
  5649. From F<bin.U>:
  5650.  
  5651. This variable is the same as binexp unless C<AFS> is running in which case
  5652. the user is explicitely prompted for it. This variable should always
  5653. be used in your makefiles for maximum portability.
  5654.  
  5655. =item C<installhtml1dir>
  5656.  
  5657. From F<html1dir.U>:
  5658.  
  5659. This variable is really the same as html1direxp, unless you are
  5660. using a different installprefix.  For extra portability, you
  5661. should only use this variable within your makefiles.
  5662.  
  5663. =item C<installhtml3dir>
  5664.  
  5665. From F<html3dir.U>:
  5666.  
  5667. This variable is really the same as html3direxp, unless you are
  5668. using a different installprefix.  For extra portability, you
  5669. should only use this variable within your makefiles.
  5670.  
  5671. =item C<installman1dir>
  5672.  
  5673. From F<man1dir.U>:
  5674.  
  5675. This variable is really the same as man1direxp, unless you are using
  5676. C<AFS> in which case it points to the read/write location whereas
  5677. man1direxp only points to the read-only access location. For extra
  5678. portability, you should only use this variable within your makefiles.
  5679.  
  5680. =item C<installman3dir>
  5681.  
  5682. From F<man3dir.U>:
  5683.  
  5684. This variable is really the same as man3direxp, unless you are using
  5685. C<AFS> in which case it points to the read/write location whereas
  5686. man3direxp only points to the read-only access location. For extra
  5687. portability, you should only use this variable within your makefiles.
  5688.  
  5689. =item C<installprefix>
  5690.  
  5691. From F<installprefix.U>:
  5692.  
  5693. This variable holds the name of the directory below which
  5694. "make install" will install the package.  For most users, this
  5695. is the same as prefix.  However, it is useful for
  5696. installing the software into a different (usually temporary)
  5697. location after which it can be bundled up and moved somehow
  5698. to the final location specified by prefix.
  5699.  
  5700. =item C<installprefixexp>
  5701.  
  5702. From F<installprefix.U>:
  5703.  
  5704. This variable holds the full absolute path of installprefix
  5705. with all F<~>-expansion done.
  5706.  
  5707. =item C<installprivlib>
  5708.  
  5709. From F<privlib.U>:
  5710.  
  5711. This variable is really the same as privlibexp but may differ on
  5712. those systems using C<AFS>. For extra portability, only this variable
  5713. should be used in makefiles.
  5714.  
  5715. =item C<installscript>
  5716.  
  5717. From F<scriptdir.U>:
  5718.  
  5719. This variable is usually the same as scriptdirexp, unless you are on
  5720. a system running C<AFS>, in which case they may differ slightly. You
  5721. should always use this variable within your makefiles for portability.
  5722.  
  5723. =item C<installsitearch>
  5724.  
  5725. From F<sitearch.U>:
  5726.  
  5727. This variable is really the same as sitearchexp but may differ on
  5728. those systems using C<AFS>. For extra portability, only this variable
  5729. should be used in makefiles.
  5730.  
  5731. =item C<installsitebin>
  5732.  
  5733. From F<sitebin.U>:
  5734.  
  5735. This variable is usually the same as sitebinexp, unless you are on
  5736. a system running C<AFS>, in which case they may differ slightly. You
  5737. should always use this variable within your makefiles for portability.
  5738.  
  5739. =item C<installsitehtml1dir>
  5740.  
  5741. From F<sitehtml1dir.U>:
  5742.  
  5743. This variable is really the same as sitehtml1direxp, unless you are using
  5744. C<AFS> in which case it points to the read/write location whereas
  5745. html1direxp only points to the read-only access location. For extra
  5746. portability, you should only use this variable within your makefiles.
  5747.  
  5748. =item C<installsitehtml3dir>
  5749.  
  5750. From F<sitehtml3dir.U>:
  5751.  
  5752. This variable is really the same as sitehtml3direxp, unless you are using
  5753. C<AFS> in which case it points to the read/write location whereas
  5754. html3direxp only points to the read-only access location. For extra
  5755. portability, you should only use this variable within your makefiles.
  5756.  
  5757. =item C<installsitelib>
  5758.  
  5759. From F<sitelib.U>:
  5760.  
  5761. This variable is really the same as sitelibexp but may differ on
  5762. those systems using C<AFS>. For extra portability, only this variable
  5763. should be used in makefiles.
  5764.  
  5765. =item C<installsiteman1dir>
  5766.  
  5767. From F<siteman1dir.U>:
  5768.  
  5769. This variable is really the same as siteman1direxp, unless you are using
  5770. C<AFS> in which case it points to the read/write location whereas
  5771. man1direxp only points to the read-only access location. For extra
  5772. portability, you should only use this variable within your makefiles.
  5773.  
  5774. =item C<installsiteman3dir>
  5775.  
  5776. From F<siteman3dir.U>:
  5777.  
  5778. This variable is really the same as siteman3direxp, unless you are using
  5779. C<AFS> in which case it points to the read/write location whereas
  5780. man3direxp only points to the read-only access location. For extra
  5781. portability, you should only use this variable within your makefiles.
  5782.  
  5783. =item C<installsitescript>
  5784.  
  5785. From F<sitescript.U>:
  5786.  
  5787. This variable is usually the same as sitescriptexp, unless you are on
  5788. a system running C<AFS>, in which case they may differ slightly. You
  5789. should always use this variable within your makefiles for portability.
  5790.  
  5791. =item C<installstyle>
  5792.  
  5793. From F<installstyle.U>:
  5794.  
  5795. This variable describes the C<style> of the perl installation.
  5796. This is intended to be useful for tools that need to
  5797. manipulate entire perl distributions.  Perl itself doesn't use
  5798. this to find its libraries -- the library directories are
  5799. stored directly in F<Config.pm>.  Currently, there are only two
  5800. styles:  C<lib> and F<lib/perl5>.  The default library locations
  5801. (e.g. privlib, sitelib) are either F<$prefix/lib> or
  5802. F<$prefix/lib/perl5>.  The former is useful if $prefix is a
  5803. directory dedicated to perl (e.g. F</opt/perl>), while the latter
  5804. is useful if $prefix is shared by many packages, e.g. if
  5805. $prefix=F</usr/local>.
  5806.  
  5807. Unfortunately, while this C<style> variable is used to set
  5808. defaults for all three directory hierarchies (core, vendor, and
  5809. site), there is no guarantee that the same style is actually
  5810. appropriate for all those directories.  For example, $prefix
  5811. might be F</opt/perl>, but $siteprefix might be F</usr/local>.
  5812. (Perhaps, in retrospect, the C<lib> style should never have been
  5813. supported, but it did seem like a nice idea at the time.)
  5814.  
  5815. The situation is even less clear for tools such as MakeMaker
  5816. that can be used to install additional modules into
  5817. non-standard places.  For example, if a user intends to install
  5818. a module into a private directory (perhaps by setting C<PREFIX> on
  5819. the F<Makefile.PL> command line), then there is no reason to
  5820. assume that the Configure-time $installstyle setting will be
  5821. relevant for that C<PREFIX>.
  5822.  
  5823. This may later be extended to include other information, so
  5824. be careful with pattern-matching on the results.
  5825.  
  5826. For compatibility with F<perl5.005> and earlier, the default
  5827. setting is based on whether or not $prefix contains the string
  5828. C<perl>.
  5829.  
  5830. =item C<installusrbinperl>
  5831.  
  5832. From F<instubperl.U>:
  5833.  
  5834. This variable tells whether Perl should be installed also as
  5835. F</usr/bin/perl> in addition to
  5836. F<$installbin/perl>
  5837.  
  5838. =item C<installvendorarch>
  5839.  
  5840. From F<vendorarch.U>:
  5841.  
  5842. This variable is really the same as vendorarchexp but may differ on
  5843. those systems using C<AFS>. For extra portability, only this variable
  5844. should be used in makefiles.
  5845.  
  5846. =item C<installvendorbin>
  5847.  
  5848. From F<vendorbin.U>:
  5849.  
  5850. This variable is really the same as vendorbinexp but may differ on
  5851. those systems using C<AFS>. For extra portability, only this variable
  5852. should be used in makefiles.
  5853.  
  5854. =item C<installvendorhtml1dir>
  5855.  
  5856. From F<vendorhtml1dir.U>:
  5857.  
  5858. This variable is really the same as vendorhtml1direxp but may differ on
  5859. those systems using C<AFS>. For extra portability, only this variable
  5860. should be used in makefiles.
  5861.  
  5862. =item C<installvendorhtml3dir>
  5863.  
  5864. From F<vendorhtml3dir.U>:
  5865.  
  5866. This variable is really the same as vendorhtml3direxp but may differ on
  5867. those systems using C<AFS>. For extra portability, only this variable
  5868. should be used in makefiles.
  5869.  
  5870. =item C<installvendorlib>
  5871.  
  5872. From F<vendorlib.U>:
  5873.  
  5874. This variable is really the same as vendorlibexp but may differ on
  5875. those systems using C<AFS>. For extra portability, only this variable
  5876. should be used in makefiles.
  5877.  
  5878. =item C<installvendorman1dir>
  5879.  
  5880. From F<vendorman1dir.U>:
  5881.  
  5882. This variable is really the same as vendorman1direxp but may differ on
  5883. those systems using C<AFS>. For extra portability, only this variable
  5884. should be used in makefiles.
  5885.  
  5886. =item C<installvendorman3dir>
  5887.  
  5888. From F<vendorman3dir.U>:
  5889.  
  5890. This variable is really the same as vendorman3direxp but may differ on
  5891. those systems using C<AFS>. For extra portability, only this variable
  5892. should be used in makefiles.
  5893.  
  5894. =item C<installvendorscript>
  5895.  
  5896. From F<vendorscript.U>:
  5897.  
  5898. This variable is really the same as vendorscriptexp but may differ on
  5899. those systems using C<AFS>. For extra portability, only this variable
  5900. should be used in makefiles.
  5901.  
  5902. =item C<intsize>
  5903.  
  5904. From F<intsize.U>:
  5905.  
  5906. This variable contains the value of the C<INTSIZE> symbol, which
  5907. indicates to the C program how many bytes there are in an int.
  5908.  
  5909. =item C<issymlink>
  5910.  
  5911. From F<issymlink.U>:
  5912.  
  5913. This variable holds the test command to test for a symbolic link
  5914. (if they are supported).  Typical values include C<test -h> and
  5915. C<test -L>.
  5916.  
  5917. =item C<ivdformat>
  5918.  
  5919. From F<perlxvf.U>:
  5920.  
  5921. This variable contains the format string used for printing
  5922. a Perl C<IV> as a signed decimal integer.
  5923.  
  5924. =item C<ivsize>
  5925.  
  5926. From F<perlxv.U>:
  5927.  
  5928. This variable is the size of an C<IV> in bytes.
  5929.  
  5930. =item C<ivtype>
  5931.  
  5932. From F<perlxv.U>:
  5933.  
  5934. This variable contains the C type used for Perl's C<IV>.
  5935.  
  5936. =back
  5937.  
  5938. =cut
  5939.  
  5940. =head2 k
  5941.  
  5942. =over 4
  5943.  
  5944. =cut
  5945.  
  5946. =item C<known_extensions>
  5947.  
  5948. From F<Extensions.U>:
  5949.  
  5950. This variable holds a list of all C<XS> extensions included in
  5951. the package.
  5952.  
  5953. =item C<ksh>
  5954.  
  5955. From F<Loc.U>:
  5956.  
  5957. This variable is defined but not used by Configure.
  5958. The value is the empty string and is not useful.
  5959.  
  5960. =back
  5961.  
  5962. =cut
  5963.  
  5964. =head2 l
  5965.  
  5966. =over 4
  5967.  
  5968. =cut
  5969.  
  5970. =item C<ld>
  5971.  
  5972. From F<dlsrc.U>:
  5973.  
  5974. This variable indicates the program to be used to link
  5975. libraries for dynamic loading.  On some systems, it is C<ld>.
  5976. On C<ELF> systems, it should be $cc.  Mostly, we'll try to respect
  5977. the hint file setting.
  5978.  
  5979. =item C<lddlflags>
  5980.  
  5981. From F<dlsrc.U>:
  5982.  
  5983. This variable contains any special flags that might need to be
  5984. passed to $ld to create a shared library suitable for dynamic
  5985. loading.  It is up to the makefile to use it.  For hpux, it
  5986. should be C<-b>.  For sunos 4.1, it is empty.
  5987.  
  5988. =item C<ldflags>
  5989.  
  5990. From F<ccflags.U>:
  5991.  
  5992. This variable contains any additional C loader flags desired by
  5993. the user.  It is up to the Makefile to use this.
  5994.  
  5995. =item C<ldflags_uselargefiles>
  5996.  
  5997. From F<uselfs.U>:
  5998.  
  5999. This variable contains the loader flags needed by large file builds
  6000. and added to ldflags by hints files.
  6001.  
  6002. =item C<ldlibpthname>
  6003.  
  6004. From F<libperl.U>:
  6005.  
  6006. This variable holds the name of the shared library
  6007. search path, often C<LD_LIBRARY_PATH>.  To get an empty
  6008. string, the hints file must set this to C<none>.
  6009.  
  6010. =item C<less>
  6011.  
  6012. From F<Loc.U>:
  6013.  
  6014. This variable is used internally by Configure to determine the
  6015. full pathname (if any) of the less program.  After Configure runs,
  6016. the value is reset to a plain C<less> and is not useful.
  6017.  
  6018. =item C<lib_ext>
  6019.  
  6020. From F<Unix.U>:
  6021.  
  6022. This is an old synonym for _a.
  6023.  
  6024. =item C<libc>
  6025.  
  6026. From F<libc.U>:
  6027.  
  6028. This variable contains the location of the C library.
  6029.  
  6030. =item C<libperl>
  6031.  
  6032. From F<libperl.U>:
  6033.  
  6034. The perl executable is obtained by linking F<perlmain.c> with
  6035. libperl, any static extensions (usually just DynaLoader),
  6036. and any other libraries needed on this system.  libperl
  6037. is usually F<libperl.a>, but can also be F<libperl.so.xxx> if
  6038. the user wishes to build a perl executable with a shared
  6039. library.
  6040.  
  6041. =item C<libpth>
  6042.  
  6043. From F<libpth.U>:
  6044.  
  6045. This variable holds the general path (space-separated) used to find
  6046. libraries. It is intended to be used by other units.
  6047.  
  6048. =item C<libs>
  6049.  
  6050. From F<libs.U>:
  6051.  
  6052. This variable holds the additional libraries we want to use.
  6053. It is up to the Makefile to deal with it.  The list can be empty.
  6054.  
  6055. =item C<libsdirs>
  6056.  
  6057. From F<libs.U>:
  6058.  
  6059. This variable holds the directory names aka dirnames of the libraries
  6060. we found and accepted, duplicates are removed.
  6061.  
  6062. =item C<libsfiles>
  6063.  
  6064. From F<libs.U>:
  6065.  
  6066. This variable holds the filenames aka basenames of the libraries
  6067. we found and accepted.
  6068.  
  6069. =item C<libsfound>
  6070.  
  6071. From F<libs.U>:
  6072.  
  6073. This variable holds the full pathnames of the libraries
  6074. we found and accepted.
  6075.  
  6076. =item C<libspath>
  6077.  
  6078. From F<libs.U>:
  6079.  
  6080. This variable holds the directory names probed for libraries.
  6081.  
  6082. =item C<libswanted>
  6083.  
  6084. From F<Myinit.U>:
  6085.  
  6086. This variable holds a list of all the libraries we want to
  6087. search.  The order is chosen to pick up the c library
  6088. ahead of ucb or bsd libraries for SVR4.
  6089.  
  6090. =item C<libswanted_uselargefiles>
  6091.  
  6092. From F<uselfs.U>:
  6093.  
  6094. This variable contains the libraries needed by large file builds
  6095. and added to ldflags by hints files.  It is a space separated list
  6096. of the library names without the C<lib> prefix or any suffix, just
  6097. like F<libswanted.>.
  6098.  
  6099. =item C<line>
  6100.  
  6101. From F<Loc.U>:
  6102.  
  6103. This variable is defined but not used by Configure.
  6104. The value is the empty string and is not useful.
  6105.  
  6106. =item C<lint>
  6107.  
  6108. From F<Loc.U>:
  6109.  
  6110. This variable is defined but not used by Configure.
  6111. The value is the empty string and is not useful.
  6112.  
  6113. =item C<lkflags>
  6114.  
  6115. From F<ccflags.U>:
  6116.  
  6117. This variable contains any additional C partial linker flags desired by
  6118. the user.  It is up to the Makefile to use this.
  6119.  
  6120. =item C<ln>
  6121.  
  6122. From F<Loc.U>:
  6123.  
  6124. This variable is used internally by Configure to determine the
  6125. full pathname (if any) of the ln program.  After Configure runs,
  6126. the value is reset to a plain C<ln> and is not useful.
  6127.  
  6128. =item C<lns>
  6129.  
  6130. From F<lns.U>:
  6131.  
  6132. This variable holds the name of the command to make
  6133. symbolic links (if they are supported).  It can be used
  6134. in the Makefile. It is either C<ln -s> or C<ln>
  6135.  
  6136. =item C<localtime_r_proto>
  6137.  
  6138. From F<d_localtime_r.U>:
  6139.  
  6140. This variable encodes the prototype of localtime_r.
  6141. It is zero if d_localtime_r is undef, and one of the
  6142. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_localtime_r
  6143. is defined.
  6144.  
  6145. =item C<locincpth>
  6146.  
  6147. From F<ccflags.U>:
  6148.  
  6149. This variable contains a list of additional directories to be
  6150. searched by the compiler.  The appropriate C<-I> directives will
  6151. be added to ccflags.  This is intended to simplify setting
  6152. local directories from the Configure command line.
  6153. It's not much, but it parallels the loclibpth stuff in F<libpth.U>.
  6154.  
  6155. =item C<loclibpth>
  6156.  
  6157. From F<libpth.U>:
  6158.  
  6159. This variable holds the paths (space-separated) used to find local
  6160. libraries.  It is prepended to libpth, and is intended to be easily
  6161. set from the command line.
  6162.  
  6163. =item C<longdblsize>
  6164.  
  6165. From F<d_longdbl.U>:
  6166.  
  6167. This variable contains the value of the C<LONG_DOUBLESIZE> symbol, which
  6168. indicates to the C program how many bytes there are in a long double,
  6169. if this system supports long doubles.
  6170.  
  6171. =item C<longlongsize>
  6172.  
  6173. From F<d_longlong.U>:
  6174.  
  6175. This variable contains the value of the C<LONGLONGSIZE> symbol, which
  6176. indicates to the C program how many bytes there are in a long long,
  6177. if this system supports long long.
  6178.  
  6179. =item C<longsize>
  6180.  
  6181. From F<intsize.U>:
  6182.  
  6183. This variable contains the value of the C<LONGSIZE> symbol, which
  6184. indicates to the C program how many bytes there are in a long.
  6185.  
  6186. =item C<lp>
  6187.  
  6188. From F<Loc.U>:
  6189.  
  6190. This variable is defined but not used by Configure.
  6191. The value is the empty string and is not useful.
  6192.  
  6193. =item C<lpr>
  6194.  
  6195. From F<Loc.U>:
  6196.  
  6197. This variable is defined but not used by Configure.
  6198. The value is the empty string and is not useful.
  6199.  
  6200. =item C<ls>
  6201.  
  6202. From F<Loc.U>:
  6203.  
  6204. This variable is used internally by Configure to determine the
  6205. full pathname (if any) of the ls program.  After Configure runs,
  6206. the value is reset to a plain C<ls> and is not useful.
  6207.  
  6208. =item C<lseeksize>
  6209.  
  6210. From F<lseektype.U>:
  6211.  
  6212. This variable defines lseektype to be something like off_t, long,
  6213. or whatever type is used to declare lseek offset's type in the
  6214. kernel (which also appears to be lseek's return type).
  6215.  
  6216. =item C<lseektype>
  6217.  
  6218. From F<lseektype.U>:
  6219.  
  6220. This variable defines lseektype to be something like off_t, long,
  6221. or whatever type is used to declare lseek offset's type in the
  6222. kernel (which also appears to be lseek's return type).
  6223.  
  6224. =back
  6225.  
  6226. =cut
  6227.  
  6228. =head2 m
  6229.  
  6230. =over 4
  6231.  
  6232. =cut
  6233.  
  6234. =item C<mad>
  6235.  
  6236. From F<mad.U>:
  6237.  
  6238. This variable indicates that the Misc Attribute Definition code is to
  6239. be compiled.
  6240.  
  6241. =item C<madlyh>
  6242.  
  6243. From F<mad.U>:
  6244.  
  6245. If the Misc Attribute Decoration is to be compiled, this variable is
  6246. set to the name of the extra header files to be used, else it is ''
  6247.  
  6248. =item C<madlyobj>
  6249.  
  6250. From F<mad.U>:
  6251.  
  6252. If the Misc Attribute Decoration is to be compiled, this variable is
  6253. set to the name of the extra object files to be used, else it is ''
  6254.  
  6255. =item C<madlysrc>
  6256.  
  6257. From F<mad.U>:
  6258.  
  6259. If the Misc Attribute Decoration is to be compiled, this variable is
  6260. set to the name of the extra C source files to be used, else it is ''
  6261.  
  6262. =item C<mail>
  6263.  
  6264. From F<Loc.U>:
  6265.  
  6266. This variable is defined but not used by Configure.
  6267. The value is the empty string and is not useful.
  6268.  
  6269. =item C<mailx>
  6270.  
  6271. From F<Loc.U>:
  6272.  
  6273. This variable is defined but not used by Configure.
  6274. The value is the empty string and is not useful.
  6275.  
  6276. =item C<make>
  6277.  
  6278. From F<Loc.U>:
  6279.  
  6280. This variable is used internally by Configure to determine the
  6281. full pathname (if any) of the make program.  After Configure runs,
  6282. the value is reset to a plain C<make> and is not useful.
  6283.  
  6284. =item C<make_set_make>
  6285.  
  6286. From F<make.U>:
  6287.  
  6288. Some versions of C<make> set the variable C<MAKE>.  Others do not.
  6289. This variable contains the string to be included in F<Makefile.SH>
  6290. so that C<MAKE> is set if needed, and not if not needed.
  6291. Possible values are:
  6292.  
  6293. make_set_make=C<#>        # If your make program handles this for you,
  6294.  
  6295. make_set_make=C<MAKE=$make>    # if it doesn't.
  6296.  
  6297. This uses a comment character so that we can distinguish a
  6298. C<set> value (from a previous F<config.sh> or Configure C<-D> option)
  6299. from an uncomputed value.
  6300.  
  6301. =item C<mallocobj>
  6302.  
  6303. From F<mallocsrc.U>:
  6304.  
  6305. This variable contains the name of the F<malloc.o> that this package
  6306. generates, if that F<malloc.o> is preferred over the system malloc.
  6307. Otherwise the value is null.  This variable is intended for generating
  6308. Makefiles.  See mallocsrc.
  6309.  
  6310. =item C<mallocsrc>
  6311.  
  6312. From F<mallocsrc.U>:
  6313.  
  6314. This variable contains the name of the F<malloc.c> that comes with
  6315. the package, if that F<malloc.c> is preferred over the system malloc.
  6316. Otherwise the value is null.  This variable is intended for generating
  6317. Makefiles.
  6318.  
  6319. =item C<malloctype>
  6320.  
  6321. From F<mallocsrc.U>:
  6322.  
  6323. This variable contains the kind of ptr returned by malloc and realloc.
  6324.  
  6325. =item C<man1dir>
  6326.  
  6327. From F<man1dir.U>:
  6328.  
  6329. This variable contains the name of the directory in which manual
  6330. source pages are to be put.  It is the responsibility of the
  6331. F<Makefile.SH> to get the value of this into the proper command.
  6332. You must be prepared to do the F<~name> expansion yourself.
  6333.  
  6334. =item C<man1direxp>
  6335.  
  6336. From F<man1dir.U>:
  6337.  
  6338. This variable is the same as the man1dir variable, but is filename
  6339. expanded at configuration time, for convenient use in makefiles.
  6340.  
  6341. =item C<man1ext>
  6342.  
  6343. From F<man1dir.U>:
  6344.  
  6345. This variable contains the extension that the manual page should
  6346. have: one of C<n>, C<l>, or C<1>.  The Makefile must supply the F<.>.
  6347. See man1dir.
  6348.  
  6349. =item C<man3dir>
  6350.  
  6351. From F<man3dir.U>:
  6352.  
  6353. This variable contains the name of the directory in which manual
  6354. source pages are to be put.  It is the responsibility of the
  6355. F<Makefile.SH> to get the value of this into the proper command.
  6356. You must be prepared to do the F<~name> expansion yourself.
  6357.  
  6358. =item C<man3direxp>
  6359.  
  6360. From F<man3dir.U>:
  6361.  
  6362. This variable is the same as the man3dir variable, but is filename
  6363. expanded at configuration time, for convenient use in makefiles.
  6364.  
  6365. =item C<man3ext>
  6366.  
  6367. From F<man3dir.U>:
  6368.  
  6369. This variable contains the extension that the manual page should
  6370. have: one of C<n>, C<l>, or C<3>.  The Makefile must supply the F<.>.
  6371. See man3dir.
  6372.  
  6373. =item C<mips_type>
  6374.  
  6375. From F<usrinc.U>:
  6376.  
  6377. This variable holds the environment type for the mips system.
  6378. Possible values are "BSD 4.3" and "System V".
  6379.  
  6380. =item C<mistrustnm>
  6381.  
  6382. From F<Csym.U>:
  6383.  
  6384. This variable can be used to establish a fallthrough for the cases
  6385. where nm fails to find a symbol.  If usenm is false or usenm is true
  6386. and mistrustnm is false, this variable has no effect.  If usenm is true
  6387. and mistrustnm is C<compile>, a test program will be compiled to try to
  6388. find any symbol that can't be located via nm lookup.  If mistrustnm is
  6389. C<run>, the test program will be run as well as being compiled.
  6390.  
  6391. =item C<mkdir>
  6392.  
  6393. From F<Loc.U>:
  6394.  
  6395. This variable is used internally by Configure to determine the
  6396. full pathname (if any) of the mkdir program.  After Configure runs,
  6397. the value is reset to a plain C<mkdir> and is not useful.
  6398.  
  6399. =item C<mmaptype>
  6400.  
  6401. From F<d_mmap.U>:
  6402.  
  6403. This symbol contains the type of pointer returned by mmap()
  6404. (and simultaneously the type of the first argument).
  6405. It can be C<void *> or C<caddr_t>.
  6406.  
  6407. =item C<modetype>
  6408.  
  6409. From F<modetype.U>:
  6410.  
  6411. This variable defines modetype to be something like mode_t,
  6412. int, unsigned short, or whatever type is used to declare file
  6413. modes for system calls.
  6414.  
  6415. =item C<more>
  6416.  
  6417. From F<Loc.U>:
  6418.  
  6419. This variable is used internally by Configure to determine the
  6420. full pathname (if any) of the more program.  After Configure runs,
  6421. the value is reset to a plain C<more> and is not useful.
  6422.  
  6423. =item C<multiarch>
  6424.  
  6425. From F<multiarch.U>:
  6426.  
  6427. This variable conditionally defines the C<MULTIARCH> symbol
  6428. which signifies the presence of multiplatform files.
  6429. This is normally set by hints files.
  6430.  
  6431. =item C<mv>
  6432.  
  6433. From F<Loc.U>:
  6434.  
  6435. This variable is defined but not used by Configure.
  6436. The value is the empty string and is not useful.
  6437.  
  6438. =item C<myarchname>
  6439.  
  6440. From F<archname.U>:
  6441.  
  6442. This variable holds the architecture name computed by Configure in
  6443. a previous run. It is not intended to be perused by any user and
  6444. should never be set in a hint file.
  6445.  
  6446. =item C<mydomain>
  6447.  
  6448. From F<myhostname.U>:
  6449.  
  6450. This variable contains the eventual value of the C<MYDOMAIN> symbol,
  6451. which is the domain of the host the program is going to run on.
  6452. The domain must be appended to myhostname to form a complete host name.
  6453. The dot comes with mydomain, and need not be supplied by the program.
  6454.  
  6455. =item C<myhostname>
  6456.  
  6457. From F<myhostname.U>:
  6458.  
  6459. This variable contains the eventual value of the C<MYHOSTNAME> symbol,
  6460. which is the name of the host the program is going to run on.
  6461. The domain is not kept with hostname, but must be gotten from mydomain.
  6462. The dot comes with mydomain, and need not be supplied by the program.
  6463.  
  6464. =item C<myuname>
  6465.  
  6466. From F<Oldconfig.U>:
  6467.  
  6468. The output of C<uname -a> if available, otherwise the hostname. On Xenix,
  6469. pseudo variables assignments in the output are stripped, thank you. The
  6470. whole thing is then lower-cased.
  6471.  
  6472. =back
  6473.  
  6474. =cut
  6475.  
  6476. =head2 n
  6477.  
  6478. =over 4
  6479.  
  6480. =cut
  6481.  
  6482. =item C<n>
  6483.  
  6484. From F<n.U>:
  6485.  
  6486. This variable contains the C<-n> flag if that is what causes the echo
  6487. command to suppress newline.  Otherwise it is null.  Correct usage is
  6488. $echo $n "prompt for a question: $c".
  6489.  
  6490. =item C<need_va_copy>
  6491.  
  6492. From F<need_va_copy.U>:
  6493.  
  6494. This symbol, if defined, indicates that the system stores
  6495. the variable argument list datatype, va_list, in a format
  6496. that cannot be copied by simple assignment, so that some
  6497. other means must be used when copying is required.
  6498. As such systems vary in their provision (or non-provision)
  6499. of copying mechanisms, F<handy.h> defines a platform-
  6500. C<independent> macro, Perl_va_copy(src, dst), to do the job.
  6501.  
  6502. =item C<netdb_hlen_type>
  6503.  
  6504. From F<netdbtype.U>:
  6505.  
  6506. This variable holds the type used for the 2nd argument to
  6507. gethostbyaddr().  Usually, this is int or size_t or unsigned.
  6508. This is only useful if you have gethostbyaddr(), naturally.
  6509.  
  6510. =item C<netdb_host_type>
  6511.  
  6512. From F<netdbtype.U>:
  6513.  
  6514. This variable holds the type used for the 1st argument to
  6515. gethostbyaddr().  Usually, this is char * or void *,  possibly
  6516. with or without a const prefix.
  6517. This is only useful if you have gethostbyaddr(), naturally.
  6518.  
  6519. =item C<netdb_name_type>
  6520.  
  6521. From F<netdbtype.U>:
  6522.  
  6523. This variable holds the type used for the argument to
  6524. gethostbyname().  Usually, this is char * or const char *.
  6525. This is only useful if you have gethostbyname(), naturally.
  6526.  
  6527. =item C<netdb_net_type>
  6528.  
  6529. From F<netdbtype.U>:
  6530.  
  6531. This variable holds the type used for the 1st argument to
  6532. getnetbyaddr().  Usually, this is int or long.
  6533. This is only useful if you have getnetbyaddr(), naturally.
  6534.  
  6535. =item C<nm>
  6536.  
  6537. From F<Loc.U>:
  6538.  
  6539. This variable is used internally by Configure to determine the
  6540. full pathname (if any) of the nm program.  After Configure runs,
  6541. the value is reset to a plain C<nm> and is not useful.
  6542.  
  6543. =item C<nm_opt>
  6544.  
  6545. From F<usenm.U>:
  6546.  
  6547. This variable holds the options that may be necessary for nm.
  6548.  
  6549. =item C<nm_so_opt>
  6550.  
  6551. From F<usenm.U>:
  6552.  
  6553. This variable holds the options that may be necessary for nm
  6554. to work on a shared library but that can not be used on an
  6555. archive library.  Currently, this is only used by Linux, where
  6556. nm --dynamic is *required* to get symbols from an C<ELF> library which
  6557. has been stripped, but nm --dynamic is *fatal* on an archive library.
  6558. Maybe Linux should just always set usenm=false.
  6559.  
  6560. =item C<nonxs_ext>
  6561.  
  6562. From F<Extensions.U>:
  6563.  
  6564. This variable holds a list of all non-xs extensions included
  6565. in the package.  All of them will be built.
  6566.  
  6567. =item C<nroff>
  6568.  
  6569. From F<Loc.U>:
  6570.  
  6571. This variable is used internally by Configure to determine the
  6572. full pathname (if any) of the nroff program.  After Configure runs,
  6573. the value is reset to a plain C<nroff> and is not useful.
  6574.  
  6575. =item C<nv_overflows_integers_at>
  6576.  
  6577. From F<perlxv.U>:
  6578.  
  6579. This variable gives the largest integer value that NVs can hold
  6580. as a constant floating point expression.
  6581. If it could not be determined, it holds the value 0.
  6582.  
  6583. =item C<nv_preserves_uv_bits>
  6584.  
  6585. From F<perlxv.U>:
  6586.  
  6587. This variable indicates how many of bits type uvtype
  6588. a variable nvtype can preserve.
  6589.  
  6590. =item C<nveformat>
  6591.  
  6592. From F<perlxvf.U>:
  6593.  
  6594. This variable contains the format string used for printing
  6595. a Perl C<NV> using %e-ish floating point format.
  6596.  
  6597. =item C<nvEUformat>
  6598.  
  6599. From F<perlxvf.U>:
  6600.  
  6601. This variable contains the format string used for printing
  6602. a Perl C<NV> using %E-ish floating point format.
  6603.  
  6604. =item C<nvfformat>
  6605.  
  6606. From F<perlxvf.U>:
  6607.  
  6608. This variable confains the format string used for printing
  6609. a Perl C<NV> using %f-ish floating point format.
  6610.  
  6611. =item C<nvFUformat>
  6612.  
  6613. From F<perlxvf.U>:
  6614.  
  6615. This variable confains the format string used for printing
  6616. a Perl C<NV> using %F-ish floating point format.
  6617.  
  6618. =item C<nvgformat>
  6619.  
  6620. From F<perlxvf.U>:
  6621.  
  6622. This variable contains the format string used for printing
  6623. a Perl C<NV> using %g-ish floating point format.
  6624.  
  6625. =item C<nvGUformat>
  6626.  
  6627. From F<perlxvf.U>:
  6628.  
  6629. This variable contains the format string used for printing
  6630. a Perl C<NV> using %G-ish floating point format.
  6631.  
  6632. =item C<nvsize>
  6633.  
  6634. From F<perlxv.U>:
  6635.  
  6636. This variable is the size of an C<NV> in bytes.
  6637.  
  6638. =item C<nvtype>
  6639.  
  6640. From F<perlxv.U>:
  6641.  
  6642. This variable contains the C type used for Perl's C<NV>.
  6643.  
  6644. =back
  6645.  
  6646. =cut
  6647.  
  6648. =head2 o
  6649.  
  6650. =over 4
  6651.  
  6652. =cut
  6653.  
  6654. =item C<o_nonblock>
  6655.  
  6656. From F<nblock_io.U>:
  6657.  
  6658. This variable bears the symbol value to be used during open() or fcntl()
  6659. to turn on non-blocking I/O for a file descriptor. If you wish to switch
  6660. between blocking and non-blocking, you may try ioctl(C<FIOSNBIO>) instead,
  6661. but that is only supported by some devices.
  6662.  
  6663. =item C<obj_ext>
  6664.  
  6665. From F<Unix.U>:
  6666.  
  6667. This is an old synonym for _o.
  6668.  
  6669. =item C<old_pthread_create_joinable>
  6670.  
  6671. From F<d_pthrattrj.U>:
  6672.  
  6673. This variable defines the constant to use for creating joinable
  6674. (aka undetached) pthreads.  Unused if F<pthread.h> defines
  6675. C<PTHREAD_CREATE_JOINABLE>.  If used, possible values are
  6676. C<PTHREAD_CREATE_UNDETACHED> and C<__UNDETACHED>.
  6677.  
  6678. =item C<optimize>
  6679.  
  6680. From F<ccflags.U>:
  6681.  
  6682. This variable contains any F<optimizer/debugger> flag that should be used.
  6683. It is up to the Makefile to use it.
  6684.  
  6685. =item C<orderlib>
  6686.  
  6687. From F<orderlib.U>:
  6688.  
  6689. This variable is C<true> if the components of libraries must be ordered
  6690. (with `lorder $* | tsort`) before placing them in an archive.  Set to
  6691. C<false> if ranlib or ar can generate random libraries.
  6692.  
  6693. =item C<osname>
  6694.  
  6695. From F<Oldconfig.U>:
  6696.  
  6697. This variable contains the operating system name (e.g. sunos,
  6698. solaris, hpux, etc.).  It can be useful later on for setting
  6699. defaults.  Any spaces are replaced with underscores.  It is set
  6700. to a null string if we can't figure it out.
  6701.  
  6702. =item C<osvers>
  6703.  
  6704. From F<Oldconfig.U>:
  6705.  
  6706. This variable contains the operating system version (e.g.
  6707. 4.1.3, 5.2, etc.).  It is primarily used for helping select
  6708. an appropriate hints file, but might be useful elsewhere for
  6709. setting defaults.  It is set to '' if we can't figure it out.
  6710. We try to be flexible about how much of the version number
  6711. to keep, e.g. if 4.1.1, 4.1.2, and 4.1.3 are essentially the
  6712. same for this package, hints files might just be F<os_4.0> or
  6713. F<os_4.1>, etc., not keeping separate files for each little release.
  6714.  
  6715. =item C<otherlibdirs>
  6716.  
  6717. From F<otherlibdirs.U>:
  6718.  
  6719. This variable contains a colon-separated set of paths for the perl
  6720. binary to search for additional library files or modules.
  6721. These directories will be tacked to the end of @C<INC>.
  6722. Perl will automatically search below each path for version-
  6723. and architecture-specific directories.  See inc_version_list
  6724. for more details.
  6725. A value of C< > means C<none> and is used to preserve this value
  6726. for the next run through Configure.
  6727.  
  6728. =back
  6729.  
  6730. =cut
  6731.  
  6732. =head2 p
  6733.  
  6734. =over 4
  6735.  
  6736. =cut
  6737.  
  6738. =item C<package>
  6739.  
  6740. From F<package.U>:
  6741.  
  6742. This variable contains the name of the package being constructed.
  6743. It is primarily intended for the use of later Configure units.
  6744.  
  6745. =item C<pager>
  6746.  
  6747. From F<pager.U>:
  6748.  
  6749. This variable contains the name of the preferred pager on the system.
  6750. Usual values are (the full pathnames of) more, less, pg, or cat.
  6751.  
  6752. =item C<passcat>
  6753.  
  6754. From F<nis.U>:
  6755.  
  6756. This variable contains a command that produces the text of the
  6757. F</etc/passwd> file.  This is normally "cat F</etc/passwd>", but can be
  6758. "ypcat passwd" when C<NIS> is used.
  6759. On some systems, such as os390, there may be no equivalent
  6760. command, in which case this variable is unset.
  6761.  
  6762. =item C<patchlevel>
  6763.  
  6764. From F<patchlevel.U>:
  6765.  
  6766. The patchlevel level of this package.
  6767. The value of patchlevel comes from the F<patchlevel.h> file.
  6768. In a version number such as 5.6.1, this is the C<6>.
  6769. In F<patchlevel.h>, this is referred to as C<PERL_VERSION>.
  6770.  
  6771. =item C<path_sep>
  6772.  
  6773. From F<Unix.U>:
  6774.  
  6775. This is an old synonym for p_ in F<Head.U>, the character
  6776. used to separate elements in the command shell search C<PATH>.
  6777.  
  6778. =item C<perl>
  6779.  
  6780. From F<Loc.U>:
  6781.  
  6782. This variable is defined but not used by Configure.
  6783. The value is the empty string and is not useful.
  6784.  
  6785. =item C<perl5>
  6786.  
  6787. From F<perl5.U>:
  6788.  
  6789. This variable contains the full path (if any) to a previously
  6790. installed F<perl5.005> or later suitable for running the script
  6791. to determine inc_version_list.
  6792.  
  6793. =back
  6794.  
  6795. =cut
  6796.  
  6797. =head2 P
  6798.  
  6799. =over 4
  6800.  
  6801. =cut
  6802.  
  6803. =item C<PERL_API_REVISION>
  6804.  
  6805. From F<patchlevel.h>:
  6806.  
  6807. This number describes the earliest compatible C<PERL_REVISION> of
  6808. Perl (C<compatibility> here being defined as sufficient F<binary/C<API>>
  6809. compatibility to run C<XS> code built with the older version).
  6810. Normally this does not change across maintenance releases.
  6811. Please read the comment in F<patchlevel.h>.
  6812.  
  6813. =item C<PERL_API_SUBVERSION>
  6814.  
  6815. From F<patchlevel.h>:
  6816.  
  6817. This number describes the earliest compatible C<PERL_SUBVERSION> of
  6818. Perl (C<compatibility> here being defined as sufficient F<binary/C<API>>
  6819. compatibility to run C<XS> code built with the older version).
  6820. Normally this does not change across maintenance releases.
  6821. Please read the comment in F<patchlevel.h>.
  6822.  
  6823. =item C<PERL_API_VERSION>
  6824.  
  6825. From F<patchlevel.h>:
  6826.  
  6827. This number describes the earliest compatible C<PERL_VERSION> of
  6828. Perl (C<compatibility> here being defined as sufficient F<binary/C<API>>
  6829. compatibility to run C<XS> code built with the older version).
  6830. Normally this does not change across maintenance releases.
  6831. Please read the comment in F<patchlevel.h>.
  6832.  
  6833. =item C<PERL_CONFIG_SH>
  6834.  
  6835. From F<Oldsyms.U>:
  6836.  
  6837. This is set to C<true> in F<config.sh> so that a shell script
  6838. sourcing F<config.sh> can tell if it has been sourced already.
  6839.  
  6840. =item C<PERL_PATCHLEVEL>
  6841.  
  6842. From F<Oldsyms.U>:
  6843.  
  6844. This symbol reflects the patchlevel, if available. Will usually
  6845. come from the F<.patch> file, which is available when the perl
  6846. source tree was fetched with rsync.
  6847.  
  6848. =item C<perl_patchlevel>
  6849.  
  6850. From F<patchlevel.U>:
  6851.  
  6852. This is the Perl patch level, a numeric change identifier,
  6853. as defined by whichever source code maintenance system
  6854. is used to maintain the patches; currently Perforce.
  6855. It does not correlate with the Perl version numbers or
  6856. the maintenance versus development dichotomy except
  6857. by also being increasing.
  6858.  
  6859. =item C<PERL_REVISION>
  6860.  
  6861. From F<Oldsyms.U>:
  6862.  
  6863. In a Perl version number such as 5.6.2, this is the 5.
  6864. This value is manually set in F<patchlevel.h>
  6865.  
  6866. =item C<PERL_SUBVERSION>
  6867.  
  6868. From F<Oldsyms.U>:
  6869.  
  6870. In a Perl version number such as 5.6.2, this is the 2.
  6871. Values greater than 50 represent potentially unstable
  6872. development subversions.
  6873. This value is manually set in F<patchlevel.h>
  6874.  
  6875. =item C<PERL_VERSION>
  6876.  
  6877. From F<Oldsyms.U>:
  6878.  
  6879. In a Perl version number such as 5.6.2, this is the 6.
  6880. This value is manually set in F<patchlevel.h>
  6881.  
  6882. =item C<perladmin>
  6883.  
  6884. From F<perladmin.U>:
  6885.  
  6886. Electronic mail address of the perl5 administrator.
  6887.  
  6888. =item C<perllibs>
  6889.  
  6890. From F<End.U>:
  6891.  
  6892. The list of libraries needed by Perl only (any libraries needed
  6893. by extensions only will by dropped, if using dynamic loading).
  6894.  
  6895. =item C<perlpath>
  6896.  
  6897. From F<perlpath.U>:
  6898.  
  6899. This variable contains the eventual value of the C<PERLPATH> symbol,
  6900. which contains the name of the perl interpreter to be used in
  6901. shell scripts and in the "eval C<exec>" idiom.  This variable is
  6902. not necessarily the pathname of the file containing the perl
  6903. interpreter; you must append the executable extension (_exe) if
  6904. it is not already present.  Note that Perl code that runs during
  6905. the Perl build process cannot reference this variable, as Perl
  6906. may not have been installed, or even if installed, may be a
  6907. different version of Perl.
  6908.  
  6909. =item C<pg>
  6910.  
  6911. From F<Loc.U>:
  6912.  
  6913. This variable is used internally by Configure to determine the
  6914. full pathname (if any) of the pg program.  After Configure runs,
  6915. the value is reset to a plain C<pg> and is not useful.
  6916.  
  6917. =item C<phostname>
  6918.  
  6919. From F<myhostname.U>:
  6920.  
  6921. This variable contains the eventual value of the C<PHOSTNAME> symbol,
  6922. which is a command that can be fed to popen() to get the host name.
  6923. The program should probably not presume that the domain is or isn't
  6924. there already.
  6925.  
  6926. =item C<pidtype>
  6927.  
  6928. From F<pidtype.U>:
  6929.  
  6930. This variable defines C<PIDTYPE> to be something like pid_t, int,
  6931. ushort, or whatever type is used to declare process ids in the kernel.
  6932.  
  6933. =item C<plibpth>
  6934.  
  6935. From F<libpth.U>:
  6936.  
  6937. Holds the private path used by Configure to find out the libraries.
  6938. Its value is prepend to libpth. This variable takes care of special
  6939. machines, like the mips.  Usually, it should be empty.
  6940.  
  6941. =item C<pmake>
  6942.  
  6943. From F<Loc.U>:
  6944.  
  6945. This variable is defined but not used by Configure.
  6946. The value is the empty string and is not useful.
  6947.  
  6948. =item C<pr>
  6949.  
  6950. From F<Loc.U>:
  6951.  
  6952. This variable is defined but not used by Configure.
  6953. The value is the empty string and is not useful.
  6954.  
  6955. =item C<prefix>
  6956.  
  6957. From F<prefix.U>:
  6958.  
  6959. This variable holds the name of the directory below which the
  6960. user will install the package.  Usually, this is F</usr/local>, and
  6961. executables go in F</usr/local/bin>, library stuff in F</usr/local/lib>,
  6962. man pages in F</usr/local/man>, etc.  It is only used to set defaults
  6963. for things in F<bin.U>, F<mansrc.U>, F<privlib.U>, or F<scriptdir.U>.
  6964.  
  6965. =item C<prefixexp>
  6966.  
  6967. From F<prefix.U>:
  6968.  
  6969. This variable holds the full absolute path of the directory below
  6970. which the user will install the package.  Derived from prefix.
  6971.  
  6972. =item C<privlib>
  6973.  
  6974. From F<privlib.U>:
  6975.  
  6976. This variable contains the eventual value of the C<PRIVLIB> symbol,
  6977. which is the name of the private library for this package.  It may
  6978. have a F<~> on the front. It is up to the makefile to eventually create
  6979. this directory while performing installation (with F<~> substitution).
  6980.  
  6981. =item C<privlibexp>
  6982.  
  6983. From F<privlib.U>:
  6984.  
  6985. This variable is the F<~name> expanded version of privlib, so that you
  6986. may use it directly in Makefiles or shell scripts.
  6987.  
  6988. =item C<procselfexe>
  6989.  
  6990. From F<d_procselfexe.U>:
  6991.  
  6992. If d_procselfexe is defined, $procselfexe is the filename
  6993. of the symbolic link pointing to the absolute pathname of
  6994. the executing program.
  6995.  
  6996. =item C<prototype>
  6997.  
  6998. From F<prototype.U>:
  6999.  
  7000. This variable holds the eventual value of C<CAN_PROTOTYPE>, which
  7001. indicates the C compiler can handle funciton prototypes.
  7002.  
  7003. =item C<ptrsize>
  7004.  
  7005. From F<ptrsize.U>:
  7006.  
  7007. This variable contains the value of the C<PTRSIZE> symbol, which
  7008. indicates to the C program how many bytes there are in a pointer.
  7009.  
  7010. =back
  7011.  
  7012. =cut
  7013.  
  7014. =head2 q
  7015.  
  7016. =over 4
  7017.  
  7018. =cut
  7019.  
  7020. =item C<quadkind>
  7021.  
  7022. From F<quadtype.U>:
  7023.  
  7024. This variable, if defined, encodes the type of a quad:
  7025. 1 = int, 2 = long, 3 = long long, 4 = int64_t.
  7026.  
  7027. =item C<quadtype>
  7028.  
  7029. From F<quadtype.U>:
  7030.  
  7031. This variable defines Quad_t to be something like long, int,
  7032. long long, int64_t, or whatever type is used for 64-bit integers.
  7033.  
  7034. =back
  7035.  
  7036. =cut
  7037.  
  7038. =head2 r
  7039.  
  7040. =over 4
  7041.  
  7042. =cut
  7043.  
  7044. =item C<randbits>
  7045.  
  7046. From F<randfunc.U>:
  7047.  
  7048. Indicates how many bits are produced by the function used to
  7049. generate normalized random numbers.
  7050.  
  7051. =item C<randfunc>
  7052.  
  7053. From F<randfunc.U>:
  7054.  
  7055. Indicates the name of the random number function to use.
  7056. Values include drand48, random, and rand. In C programs,
  7057. the C<Drand01> macro is defined to generate uniformly distributed
  7058. random numbers over the range [0., 1.[ (see drand01 and nrand).
  7059.  
  7060. =item C<random_r_proto>
  7061.  
  7062. From F<d_random_r.U>:
  7063.  
  7064. This variable encodes the prototype of random_r.
  7065. It is zero if d_random_r is undef, and one of the
  7066. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_random_r
  7067. is defined.
  7068.  
  7069. =item C<randseedtype>
  7070.  
  7071. From F<randfunc.U>:
  7072.  
  7073. Indicates the type of the argument of the seedfunc.
  7074.  
  7075. =item C<ranlib>
  7076.  
  7077. From F<orderlib.U>:
  7078.  
  7079. This variable is set to the pathname of the ranlib program, if it is
  7080. needed to generate random libraries.  Set to C<:> if ar can generate
  7081. random libraries or if random libraries are not supported
  7082.  
  7083. =item C<rd_nodata>
  7084.  
  7085. From F<nblock_io.U>:
  7086.  
  7087. This variable holds the return code from read() when no data is
  7088. present. It should be -1, but some systems return 0 when C<O_NDELAY> is
  7089. used, which is a shame because you cannot make the difference between
  7090. no data and an F<EOF.>. Sigh!
  7091.  
  7092. =item C<readdir64_r_proto>
  7093.  
  7094. From F<d_readdir64_r.U>:
  7095.  
  7096. This variable encodes the prototype of readdir64_r.
  7097. It is zero if d_readdir64_r is undef, and one of the
  7098. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_readdir64_r
  7099. is defined.
  7100.  
  7101. =item C<readdir_r_proto>
  7102.  
  7103. From F<d_readdir_r.U>:
  7104.  
  7105. This variable encodes the prototype of readdir_r.
  7106. It is zero if d_readdir_r is undef, and one of the
  7107. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_readdir_r
  7108. is defined.
  7109.  
  7110. =item C<revision>
  7111.  
  7112. From F<patchlevel.U>:
  7113.  
  7114. The value of revision comes from the F<patchlevel.h> file.
  7115. In a version number such as 5.6.1, this is the C<5>.
  7116. In F<patchlevel.h>, this is referred to as C<PERL_REVISION>.
  7117.  
  7118. =item C<rm>
  7119.  
  7120. From F<Loc.U>:
  7121.  
  7122. This variable is used internally by Configure to determine the
  7123. full pathname (if any) of the rm program.  After Configure runs,
  7124. the value is reset to a plain C<rm> and is not useful.
  7125.  
  7126. =item C<rm_try>
  7127.  
  7128. From F<Unix.U>:
  7129.  
  7130. This is a cleanup variable for try test programs.
  7131. Internal Configure use only.
  7132.  
  7133. =item C<rmail>
  7134.  
  7135. From F<Loc.U>:
  7136.  
  7137. This variable is defined but not used by Configure.
  7138. The value is the empty string and is not useful.
  7139.  
  7140. =item C<run>
  7141.  
  7142. From F<Cross.U>:
  7143.  
  7144. This variable contains the command used by Configure
  7145. to copy and execute a cross-compiled executable in the
  7146. target host.  Useful and available only during Perl build.
  7147. Empty string '' if not cross-compiling.
  7148.  
  7149. =item C<runnm>
  7150.  
  7151. From F<usenm.U>:
  7152.  
  7153. This variable contains C<true> or C<false> depending whether the
  7154. nm extraction should be performed or not, according to the value
  7155. of usenm and the flags on the Configure command line.
  7156.  
  7157. =back
  7158.  
  7159. =cut
  7160.  
  7161. =head2 s
  7162.  
  7163. =over 4
  7164.  
  7165. =cut
  7166.  
  7167. =item C<sched_yield>
  7168.  
  7169. From F<d_pthread_y.U>:
  7170.  
  7171. This variable defines the way to yield the execution
  7172. of the current thread.
  7173.  
  7174. =item C<scriptdir>
  7175.  
  7176. From F<scriptdir.U>:
  7177.  
  7178. This variable holds the name of the directory in which the user wants
  7179. to put publicly scripts for the package in question.  It is either
  7180. the same directory as for binaries, or a special one that can be
  7181. mounted across different architectures, like F</usr/share>. Programs
  7182. must be prepared to deal with F<~name> expansion.
  7183.  
  7184. =item C<scriptdirexp>
  7185.  
  7186. From F<scriptdir.U>:
  7187.  
  7188. This variable is the same as scriptdir, but is filename expanded
  7189. at configuration time, for programs not wanting to bother with it.
  7190.  
  7191. =item C<sed>
  7192.  
  7193. From F<Loc.U>:
  7194.  
  7195. This variable is used internally by Configure to determine the
  7196. full pathname (if any) of the sed program.  After Configure runs,
  7197. the value is reset to a plain C<sed> and is not useful.
  7198.  
  7199. =item C<seedfunc>
  7200.  
  7201. From F<randfunc.U>:
  7202.  
  7203. Indicates the random number generating seed function.
  7204. Values include srand48, srandom, and srand.
  7205.  
  7206. =item C<selectminbits>
  7207.  
  7208. From F<selectminbits.U>:
  7209.  
  7210. This variable holds the minimum number of bits operated by select.
  7211. That is, if you do select(n, ...), how many bits at least will be
  7212. cleared in the masks if some activity is detected.  Usually this
  7213. is either n or 32*ceil(F<n/32>), especially many little-endians do
  7214. the latter.  This is only useful if you have select(), naturally.
  7215.  
  7216. =item C<selecttype>
  7217.  
  7218. From F<selecttype.U>:
  7219.  
  7220. This variable holds the type used for the 2nd, 3rd, and 4th
  7221. arguments to select.  Usually, this is C<fd_set *>, if C<HAS_FD_SET>
  7222. is defined, and C<int *> otherwise.  This is only useful if you
  7223. have select(), naturally.
  7224.  
  7225. =item C<sendmail>
  7226.  
  7227. From F<Loc.U>:
  7228.  
  7229. This variable is defined but not used by Configure.
  7230. The value is the empty string and is not useful.
  7231.  
  7232. =item C<setgrent_r_proto>
  7233.  
  7234. From F<d_setgrent_r.U>:
  7235.  
  7236. This variable encodes the prototype of setgrent_r.
  7237. It is zero if d_setgrent_r is undef, and one of the
  7238. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_setgrent_r
  7239. is defined.
  7240.  
  7241. =item C<sethostent_r_proto>
  7242.  
  7243. From F<d_sethostent_r.U>:
  7244.  
  7245. This variable encodes the prototype of sethostent_r.
  7246. It is zero if d_sethostent_r is undef, and one of the
  7247. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_sethostent_r
  7248. is defined.
  7249.  
  7250. =item C<setlocale_r_proto>
  7251.  
  7252. From F<d_setlocale_r.U>:
  7253.  
  7254. This variable encodes the prototype of setlocale_r.
  7255. It is zero if d_setlocale_r is undef, and one of the
  7256. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_setlocale_r
  7257. is defined.
  7258.  
  7259. =item C<setnetent_r_proto>
  7260.  
  7261. From F<d_setnetent_r.U>:
  7262.  
  7263. This variable encodes the prototype of setnetent_r.
  7264. It is zero if d_setnetent_r is undef, and one of the
  7265. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_setnetent_r
  7266. is defined.
  7267.  
  7268. =item C<setprotoent_r_proto>
  7269.  
  7270. From F<d_setprotoent_r.U>:
  7271.  
  7272. This variable encodes the prototype of setprotoent_r.
  7273. It is zero if d_setprotoent_r is undef, and one of the
  7274. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_setprotoent_r
  7275. is defined.
  7276.  
  7277. =item C<setpwent_r_proto>
  7278.  
  7279. From F<d_setpwent_r.U>:
  7280.  
  7281. This variable encodes the prototype of setpwent_r.
  7282. It is zero if d_setpwent_r is undef, and one of the
  7283. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_setpwent_r
  7284. is defined.
  7285.  
  7286. =item C<setservent_r_proto>
  7287.  
  7288. From F<d_setservent_r.U>:
  7289.  
  7290. This variable encodes the prototype of setservent_r.
  7291. It is zero if d_setservent_r is undef, and one of the
  7292. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_setservent_r
  7293. is defined.
  7294.  
  7295. =item C<sGMTIME_max>
  7296.  
  7297. From F<time_size.U>:
  7298.  
  7299. This variable defines the maximum value of the time_t offset that
  7300. the system function gmtime () accepts
  7301.  
  7302. =item C<sGMTIME_min>
  7303.  
  7304. From F<time_size.U>:
  7305.  
  7306. This variable defines the minimum value of the time_t offset that
  7307. the system function gmtime () accepts
  7308.  
  7309. =item C<sh>
  7310.  
  7311. From F<sh.U>:
  7312.  
  7313. This variable contains the full pathname of the shell used
  7314. on this system to execute Bourne shell scripts.  Usually, this will be
  7315. F</bin/sh>, though it's possible that some systems will have F</bin/ksh>,
  7316. F</bin/pdksh>, F</bin/ash>, F</bin/bash>, or even something such as
  7317. D:F</bin/sh.exe>.
  7318. This unit comes before F<Options.U>, so you can't set sh with a C<-D>
  7319. option, though you can override this (and startsh)
  7320. with C<-O -Dsh=F</bin/whatever> -Dstartsh=whatever>
  7321.  
  7322. =item C<shar>
  7323.  
  7324. From F<Loc.U>:
  7325.  
  7326. This variable is defined but not used by Configure.
  7327. The value is the empty string and is not useful.
  7328.  
  7329. =item C<sharpbang>
  7330.  
  7331. From F<spitshell.U>:
  7332.  
  7333. This variable contains the string #! if this system supports that
  7334. construct.
  7335.  
  7336. =item C<shmattype>
  7337.  
  7338. From F<d_shmat.U>:
  7339.  
  7340. This symbol contains the type of pointer returned by shmat().
  7341. It can be C<void *> or C<char *>.
  7342.  
  7343. =item C<shortsize>
  7344.  
  7345. From F<intsize.U>:
  7346.  
  7347. This variable contains the value of the C<SHORTSIZE> symbol which
  7348. indicates to the C program how many bytes there are in a short.
  7349.  
  7350. =item C<shrpenv>
  7351.  
  7352. From F<libperl.U>:
  7353.  
  7354. If the user builds a shared F<libperl.so>, then we need to tell the
  7355. C<perl> executable where it will be able to find the installed F<libperl.so>.
  7356. One way to do this on some systems is to set the environment variable
  7357. C<LD_RUN_PATH> to the directory that will be the final location of the
  7358. shared F<libperl.so>.  The makefile can use this with something like
  7359. $shrpenv $(C<CC>) -o perl F<perlmain.o> $libperl $libs
  7360. Typical values are
  7361. shrpenv="env C<LD_RUN_PATH>=F<$archlibexp/C<CORE>>"
  7362. or
  7363. shrpenv=''
  7364. See the main perl F<Makefile.SH> for actual working usage.
  7365. Alternatively, we might be able to use a command line option such
  7366. as -R F<$archlibexp/C<CORE>> (Solaris) or -Wl,-rpath
  7367. F<$archlibexp/C<CORE>> (Linux).
  7368.  
  7369. =item C<shsharp>
  7370.  
  7371. From F<spitshell.U>:
  7372.  
  7373. This variable tells further Configure units whether your sh can
  7374. handle # comments.
  7375.  
  7376. =item C<sig_count>
  7377.  
  7378. From F<sig_name.U>:
  7379.  
  7380. This variable holds a number larger than the largest valid
  7381. signal number.  This is usually the same as the C<NSIG> macro.
  7382.  
  7383. =item C<sig_name>
  7384.  
  7385. From F<sig_name.U>:
  7386.  
  7387. This variable holds the signal names, space separated. The leading
  7388. C<SIG> in signal name is removed.  A C<ZERO> is prepended to the list.
  7389. This is currently not used, sig_name_init is used instead.
  7390.  
  7391. =item C<sig_name_init>
  7392.  
  7393. From F<sig_name.U>:
  7394.  
  7395. This variable holds the signal names, enclosed in double quotes and
  7396. separated by commas, suitable for use in the C<SIG_NAME> definition
  7397. below.  A C<ZERO> is prepended to the list, and the list is
  7398. terminated with a plain 0.  The leading C<SIG> in signal names
  7399. is removed. See sig_num.
  7400.  
  7401. =item C<sig_num>
  7402.  
  7403. From F<sig_name.U>:
  7404.  
  7405. This variable holds the signal numbers, space separated. A C<ZERO> is
  7406. prepended to the list (corresponding to the fake C<SIGZERO>).
  7407. Those numbers correspond to  the value of the signal listed
  7408. in the same place within the sig_name list.
  7409. This is currently not used, sig_num_init is used instead.
  7410.  
  7411. =item C<sig_num_init>
  7412.  
  7413. From F<sig_name.U>:
  7414.  
  7415. This variable holds the signal numbers, enclosed in double quotes and
  7416. separated by commas, suitable for use in the C<SIG_NUM> definition
  7417. below.  A C<ZERO> is prepended to the list, and the list is
  7418. terminated with a plain 0.
  7419.  
  7420. =item C<sig_size>
  7421.  
  7422. From F<sig_name.U>:
  7423.  
  7424. This variable contains the number of elements of the sig_name
  7425. and sig_num arrays.
  7426.  
  7427. =item C<signal_t>
  7428.  
  7429. From F<d_voidsig.U>:
  7430.  
  7431. This variable holds the type of the signal handler (void or int).
  7432.  
  7433. =item C<sitearch>
  7434.  
  7435. From F<sitearch.U>:
  7436.  
  7437. This variable contains the eventual value of the C<SITEARCH> symbol,
  7438. which is the name of the private library for this package.  It may
  7439. have a F<~> on the front. It is up to the makefile to eventually create
  7440. this directory while performing installation (with F<~> substitution).
  7441. The standard distribution will put nothing in this directory.
  7442. After perl has been installed, users may install their own local
  7443. architecture-dependent modules in this directory with
  7444. MakeMaker F<Makefile.PL>
  7445. or equivalent.  See C<INSTALL> for details.
  7446.  
  7447. =item C<sitearchexp>
  7448.  
  7449. From F<sitearch.U>:
  7450.  
  7451. This variable is the F<~name> expanded version of sitearch, so that you
  7452. may use it directly in Makefiles or shell scripts.
  7453.  
  7454. =item C<sitebin>
  7455.  
  7456. From F<sitebin.U>:
  7457.  
  7458. This variable holds the name of the directory in which the user wants
  7459. to put add-on publicly executable files for the package in question.  It
  7460. is most often a local directory such as F</usr/local/bin>. Programs using
  7461. this variable must be prepared to deal with F<~name> substitution.
  7462. The standard distribution will put nothing in this directory.
  7463. After perl has been installed, users may install their own local
  7464. executables in this directory with
  7465. MakeMaker F<Makefile.PL>
  7466. or equivalent.  See C<INSTALL> for details.
  7467.  
  7468. =item C<sitebinexp>
  7469.  
  7470. From F<sitebin.U>:
  7471.  
  7472. This is the same as the sitebin variable, but is filename expanded at
  7473. configuration time, for use in your makefiles.
  7474.  
  7475. =item C<sitehtml1dir>
  7476.  
  7477. From F<sitehtml1dir.U>:
  7478.  
  7479. This variable contains the name of the directory in which site-specific
  7480. html source pages are to be put.  It is the responsibility of the
  7481. F<Makefile.SH> to get the value of this into the proper command.
  7482. You must be prepared to do the F<~name> expansion yourself.
  7483. The standard distribution will put nothing in this directory.
  7484. After perl has been installed, users may install their own local
  7485. html pages in this directory with
  7486. MakeMaker F<Makefile.PL>
  7487. or equivalent.  See C<INSTALL> for details.
  7488.  
  7489. =item C<sitehtml1direxp>
  7490.  
  7491. From F<sitehtml1dir.U>:
  7492.  
  7493. This variable is the same as the sitehtml1dir variable, but is filename
  7494. expanded at configuration time, for convenient use in makefiles.
  7495.  
  7496. =item C<sitehtml3dir>
  7497.  
  7498. From F<sitehtml3dir.U>:
  7499.  
  7500. This variable contains the name of the directory in which site-specific
  7501. library html source pages are to be put.  It is the responsibility of the
  7502. F<Makefile.SH> to get the value of this into the proper command.
  7503. You must be prepared to do the F<~name> expansion yourself.
  7504. The standard distribution will put nothing in this directory.
  7505. After perl has been installed, users may install their own local
  7506. library html pages in this directory with
  7507. MakeMaker F<Makefile.PL>
  7508. or equivalent.  See C<INSTALL> for details.
  7509.  
  7510. =item C<sitehtml3direxp>
  7511.  
  7512. From F<sitehtml3dir.U>:
  7513.  
  7514. This variable is the same as the sitehtml3dir variable, but is filename
  7515. expanded at configuration time, for convenient use in makefiles.
  7516.  
  7517. =item C<sitelib>
  7518.  
  7519. From F<sitelib.U>:
  7520.  
  7521. This variable contains the eventual value of the C<SITELIB> symbol,
  7522. which is the name of the private library for this package.  It may
  7523. have a F<~> on the front. It is up to the makefile to eventually create
  7524. this directory while performing installation (with F<~> substitution).
  7525. The standard distribution will put nothing in this directory.
  7526. After perl has been installed, users may install their own local
  7527. architecture-independent modules in this directory with
  7528. MakeMaker F<Makefile.PL>
  7529. or equivalent.  See C<INSTALL> for details.
  7530.  
  7531. =item C<sitelib_stem>
  7532.  
  7533. From F<sitelib.U>:
  7534.  
  7535. This variable is $sitelibexp with any trailing version-specific component
  7536. removed.  The elements in inc_version_list (F<inc_version_list.U>) can
  7537. be tacked onto this variable to generate a list of directories to search.
  7538.  
  7539. =item C<sitelibexp>
  7540.  
  7541. From F<sitelib.U>:
  7542.  
  7543. This variable is the F<~name> expanded version of sitelib, so that you
  7544. may use it directly in Makefiles or shell scripts.
  7545.  
  7546. =item C<siteman1dir>
  7547.  
  7548. From F<siteman1dir.U>:
  7549.  
  7550. This variable contains the name of the directory in which site-specific
  7551. manual source pages are to be put.  It is the responsibility of the
  7552. F<Makefile.SH> to get the value of this into the proper command.
  7553. You must be prepared to do the F<~name> expansion yourself.
  7554. The standard distribution will put nothing in this directory.
  7555. After perl has been installed, users may install their own local
  7556. man1 pages in this directory with
  7557. MakeMaker F<Makefile.PL>
  7558. or equivalent.  See C<INSTALL> for details.
  7559.  
  7560. =item C<siteman1direxp>
  7561.  
  7562. From F<siteman1dir.U>:
  7563.  
  7564. This variable is the same as the siteman1dir variable, but is filename
  7565. expanded at configuration time, for convenient use in makefiles.
  7566.  
  7567. =item C<siteman3dir>
  7568.  
  7569. From F<siteman3dir.U>:
  7570.  
  7571. This variable contains the name of the directory in which site-specific
  7572. library man source pages are to be put.  It is the responsibility of the
  7573. F<Makefile.SH> to get the value of this into the proper command.
  7574. You must be prepared to do the F<~name> expansion yourself.
  7575. The standard distribution will put nothing in this directory.
  7576. After perl has been installed, users may install their own local
  7577. man3 pages in this directory with
  7578. MakeMaker F<Makefile.PL>
  7579. or equivalent.  See C<INSTALL> for details.
  7580.  
  7581. =item C<siteman3direxp>
  7582.  
  7583. From F<siteman3dir.U>:
  7584.  
  7585. This variable is the same as the siteman3dir variable, but is filename
  7586. expanded at configuration time, for convenient use in makefiles.
  7587.  
  7588. =item C<siteprefix>
  7589.  
  7590. From F<siteprefix.U>:
  7591.  
  7592. This variable holds the full absolute path of the directory below
  7593. which the user will install add-on packages.
  7594. See C<INSTALL> for usage and examples.
  7595.  
  7596. =item C<siteprefixexp>
  7597.  
  7598. From F<siteprefix.U>:
  7599.  
  7600. This variable holds the full absolute path of the directory below
  7601. which the user will install add-on packages.  Derived from siteprefix.
  7602.  
  7603. =item C<sitescript>
  7604.  
  7605. From F<sitescript.U>:
  7606.  
  7607. This variable holds the name of the directory in which the user wants
  7608. to put add-on publicly executable files for the package in question.  It
  7609. is most often a local directory such as F</usr/local/bin>. Programs using
  7610. this variable must be prepared to deal with F<~name> substitution.
  7611. The standard distribution will put nothing in this directory.
  7612. After perl has been installed, users may install their own local
  7613. scripts in this directory with
  7614. MakeMaker F<Makefile.PL>
  7615. or equivalent.  See C<INSTALL> for details.
  7616.  
  7617. =item C<sitescriptexp>
  7618.  
  7619. From F<sitescript.U>:
  7620.  
  7621. This is the same as the sitescript variable, but is filename expanded at
  7622. configuration time, for use in your makefiles.
  7623.  
  7624. =item C<sizesize>
  7625.  
  7626. From F<sizesize.U>:
  7627.  
  7628. This variable contains the size of a sizetype in bytes.
  7629.  
  7630. =item C<sizetype>
  7631.  
  7632. From F<sizetype.U>:
  7633.  
  7634. This variable defines sizetype to be something like size_t,
  7635. unsigned long, or whatever type is used to declare length
  7636. parameters for string functions.
  7637.  
  7638. =item C<sleep>
  7639.  
  7640. From F<Loc.U>:
  7641.  
  7642. This variable is defined but not used by Configure.
  7643. The value is the empty string and is not useful.
  7644.  
  7645. =item C<sLOCALTIME_max>
  7646.  
  7647. From F<time_size.U>:
  7648.  
  7649. This variable defines the maximum value of the time_t offset that
  7650. the system function localtime () accepts
  7651.  
  7652. =item C<sLOCALTIME_min>
  7653.  
  7654. From F<time_size.U>:
  7655.  
  7656. This variable defines the minimum value of the time_t offset that
  7657. the system function localtime () accepts
  7658.  
  7659. =item C<smail>
  7660.  
  7661. From F<Loc.U>:
  7662.  
  7663. This variable is defined but not used by Configure.
  7664. The value is the empty string and is not useful.
  7665.  
  7666. =item C<so>
  7667.  
  7668. From F<so.U>:
  7669.  
  7670. This variable holds the extension used to identify shared libraries
  7671. (also known as shared objects) on the system. Usually set to C<so>.
  7672.  
  7673. =item C<sockethdr>
  7674.  
  7675. From F<d_socket.U>:
  7676.  
  7677. This variable has any cpp C<-I> flags needed for socket support.
  7678.  
  7679. =item C<socketlib>
  7680.  
  7681. From F<d_socket.U>:
  7682.  
  7683. This variable has the names of any libraries needed for socket support.
  7684.  
  7685. =item C<socksizetype>
  7686.  
  7687. From F<socksizetype.U>:
  7688.  
  7689. This variable holds the type used for the size argument
  7690. for various socket calls like accept.  Usual values include
  7691. socklen_t, size_t, and int.
  7692.  
  7693. =item C<sort>
  7694.  
  7695. From F<Loc.U>:
  7696.  
  7697. This variable is used internally by Configure to determine the
  7698. full pathname (if any) of the sort program.  After Configure runs,
  7699. the value is reset to a plain C<sort> and is not useful.
  7700.  
  7701. =item C<spackage>
  7702.  
  7703. From F<package.U>:
  7704.  
  7705. This variable contains the name of the package being constructed,
  7706. with the first letter uppercased, F<i.e>. suitable for starting
  7707. sentences.
  7708.  
  7709. =item C<spitshell>
  7710.  
  7711. From F<spitshell.U>:
  7712.  
  7713. This variable contains the command necessary to spit out a runnable
  7714. shell on this system.  It is either cat or a grep C<-v> for # comments.
  7715.  
  7716. =item C<sPRId64>
  7717.  
  7718. From F<quadfio.U>:
  7719.  
  7720. This variable, if defined, contains the string used by stdio to
  7721. format 64-bit decimal numbers (format C<d>) for output.
  7722.  
  7723. =item C<sPRIeldbl>
  7724.  
  7725. From F<longdblfio.U>:
  7726.  
  7727. This variable, if defined, contains the string used by stdio to
  7728. format long doubles (format C<e>) for output.
  7729.  
  7730. =item C<sPRIEUldbl>
  7731.  
  7732. From F<longdblfio.U>:
  7733.  
  7734. This variable, if defined, contains the string used by stdio to
  7735. format long doubles (format C<E>) for output.
  7736. The C<U> in the name is to separate this from sPRIeldbl so that even
  7737. case-blind systems can see the difference.
  7738.  
  7739. =item C<sPRIfldbl>
  7740.  
  7741. From F<longdblfio.U>:
  7742.  
  7743. This variable, if defined, contains the string used by stdio to
  7744. format long doubles (format C<f>) for output.
  7745.  
  7746. =item C<sPRIFUldbl>
  7747.  
  7748. From F<longdblfio.U>:
  7749.  
  7750. This variable, if defined, contains the string used by stdio to
  7751. format long doubles (format C<F>) for output.
  7752. The C<U> in the name is to separate this from sPRIfldbl so that even
  7753. case-blind systems can see the difference.
  7754.  
  7755. =item C<sPRIgldbl>
  7756.  
  7757. From F<longdblfio.U>:
  7758.  
  7759. This variable, if defined, contains the string used by stdio to
  7760. format long doubles (format C<g>) for output.
  7761.  
  7762. =item C<sPRIGUldbl>
  7763.  
  7764. From F<longdblfio.U>:
  7765.  
  7766. This variable, if defined, contains the string used by stdio to
  7767. format long doubles (format C<G>) for output.
  7768. The C<U> in the name is to separate this from sPRIgldbl so that even
  7769. case-blind systems can see the difference.
  7770.  
  7771. =item C<sPRIi64>
  7772.  
  7773. From F<quadfio.U>:
  7774.  
  7775. This variable, if defined, contains the string used by stdio to
  7776. format 64-bit decimal numbers (format C<i>) for output.
  7777.  
  7778. =item C<sPRIo64>
  7779.  
  7780. From F<quadfio.U>:
  7781.  
  7782. This variable, if defined, contains the string used by stdio to
  7783. format 64-bit octal numbers (format C<o>) for output.
  7784.  
  7785. =item C<sPRIu64>
  7786.  
  7787. From F<quadfio.U>:
  7788.  
  7789. This variable, if defined, contains the string used by stdio to
  7790. format 64-bit unsigned decimal numbers (format C<u>) for output.
  7791.  
  7792. =item C<sPRIx64>
  7793.  
  7794. From F<quadfio.U>:
  7795.  
  7796. This variable, if defined, contains the string used by stdio to
  7797. format 64-bit hexadecimal numbers (format C<x>) for output.
  7798.  
  7799. =item C<sPRIXU64>
  7800.  
  7801. From F<quadfio.U>:
  7802.  
  7803. This variable, if defined, contains the string used by stdio to
  7804. format 64-bit hExADECimAl numbers (format C<X>) for output.
  7805. The C<U> in the name is to separate this from sPRIx64 so that even
  7806. case-blind systems can see the difference.
  7807.  
  7808. =item C<srand48_r_proto>
  7809.  
  7810. From F<d_srand48_r.U>:
  7811.  
  7812. This variable encodes the prototype of srand48_r.
  7813. It is zero if d_srand48_r is undef, and one of the
  7814. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_srand48_r
  7815. is defined.
  7816.  
  7817. =item C<srandom_r_proto>
  7818.  
  7819. From F<d_srandom_r.U>:
  7820.  
  7821. This variable encodes the prototype of srandom_r.
  7822. It is zero if d_srandom_r is undef, and one of the
  7823. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_srandom_r
  7824. is defined.
  7825.  
  7826. =item C<src>
  7827.  
  7828. From F<src.U>:
  7829.  
  7830. This variable holds the (possibly relative) path of the package source.
  7831. It is up to the Makefile to use this variable and set C<VPATH> accordingly
  7832. to find the sources remotely.  Use $pkgsrc to have an absolute path.
  7833.  
  7834. =item C<sSCNfldbl>
  7835.  
  7836. From F<longdblfio.U>:
  7837.  
  7838. This variable, if defined, contains the string used by stdio to
  7839. format long doubles (format C<f>) for input.
  7840.  
  7841. =item C<ssizetype>
  7842.  
  7843. From F<ssizetype.U>:
  7844.  
  7845. This variable defines ssizetype to be something like ssize_t,
  7846. long or int.  It is used by functions that return a count
  7847. of bytes or an error condition.  It must be a signed type.
  7848. We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
  7849.  
  7850. =item C<startperl>
  7851.  
  7852. From F<startperl.U>:
  7853.  
  7854. This variable contains the string to put on the front of a perl
  7855. script to make sure (hopefully) that it runs with perl and not some
  7856. shell. Of course, that leading line must be followed by the classical
  7857. perl idiom:
  7858. eval 'exec perl -S $0 ${1+C<$@>}'
  7859. if $running_under_some_shell;
  7860. to guarantee perl startup should the shell execute the script. Note
  7861. that this magic incatation is not understood by csh.
  7862.  
  7863. =item C<startsh>
  7864.  
  7865. From F<startsh.U>:
  7866.  
  7867. This variable contains the string to put on the front of a shell
  7868. script to make sure (hopefully) that it runs with sh and not some
  7869. other shell.
  7870.  
  7871. =item C<static_ext>
  7872.  
  7873. From F<Extensions.U>:
  7874.  
  7875. This variable holds a list of C<XS> extension files we want to
  7876. link statically into the package.  It is used by Makefile.
  7877.  
  7878. =item C<stdchar>
  7879.  
  7880. From F<stdchar.U>:
  7881.  
  7882. This variable conditionally defines C<STDCHAR> to be the type of char
  7883. used in F<stdio.h>.  It has the values "unsigned char" or C<char>.
  7884.  
  7885. =item C<stdio_base>
  7886.  
  7887. From F<d_stdstdio.U>:
  7888.  
  7889. This variable defines how, given a C<FILE> pointer, fp, to access the
  7890. _base field (or equivalent) of F<stdio.h>'s C<FILE> structure.  This will
  7891. be used to define the macro FILE_base(fp).
  7892.  
  7893. =item C<stdio_bufsiz>
  7894.  
  7895. From F<d_stdstdio.U>:
  7896.  
  7897. This variable defines how, given a C<FILE> pointer, fp, to determine
  7898. the number of bytes store in the I/O buffer pointer to by the
  7899. _base field (or equivalent) of F<stdio.h>'s C<FILE> structure.  This will
  7900. be used to define the macro FILE_bufsiz(fp).
  7901.  
  7902. =item C<stdio_cnt>
  7903.  
  7904. From F<d_stdstdio.U>:
  7905.  
  7906. This variable defines how, given a C<FILE> pointer, fp, to access the
  7907. _cnt field (or equivalent) of F<stdio.h>'s C<FILE> structure.  This will
  7908. be used to define the macro FILE_cnt(fp).
  7909.  
  7910. =item C<stdio_filbuf>
  7911.  
  7912. From F<d_stdstdio.U>:
  7913.  
  7914. This variable defines how, given a C<FILE> pointer, fp, to tell
  7915. stdio to refill its internal buffers (?).  This will
  7916. be used to define the macro FILE_filbuf(fp).
  7917.  
  7918. =item C<stdio_ptr>
  7919.  
  7920. From F<d_stdstdio.U>:
  7921.  
  7922. This variable defines how, given a C<FILE> pointer, fp, to access the
  7923. _ptr field (or equivalent) of F<stdio.h>'s C<FILE> structure.  This will
  7924. be used to define the macro FILE_ptr(fp).
  7925.  
  7926. =item C<stdio_stream_array>
  7927.  
  7928. From F<stdio_streams.U>:
  7929.  
  7930. This variable tells the name of the array holding the stdio streams.
  7931. Usual values include _iob, __iob, and __sF.
  7932.  
  7933. =item C<strerror_r_proto>
  7934.  
  7935. From F<d_strerror_r.U>:
  7936.  
  7937. This variable encodes the prototype of strerror_r.
  7938. It is zero if d_strerror_r is undef, and one of the
  7939. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_strerror_r
  7940. is defined.
  7941.  
  7942. =item C<strings>
  7943.  
  7944. From F<i_string.U>:
  7945.  
  7946. This variable holds the full path of the string header that will be
  7947. used. Typically F</usr/include/string.h> or F</usr/include/strings.h>.
  7948.  
  7949. =item C<submit>
  7950.  
  7951. From F<Loc.U>:
  7952.  
  7953. This variable is defined but not used by Configure.
  7954. The value is the empty string and is not useful.
  7955.  
  7956. =item C<subversion>
  7957.  
  7958. From F<patchlevel.U>:
  7959.  
  7960. The subversion level of this package.
  7961. The value of subversion comes from the F<patchlevel.h> file.
  7962. In a version number such as 5.6.1, this is the C<1>.
  7963. In F<patchlevel.h>, this is referred to as C<PERL_SUBVERSION>.
  7964. This is unique to perl.
  7965.  
  7966. =item C<sysman>
  7967.  
  7968. From F<sysman.U>:
  7969.  
  7970. This variable holds the place where the manual is located on this
  7971. system. It is not the place where the user wants to put his manual
  7972. pages. Rather it is the place where Configure may look to find manual
  7973. for unix commands (section 1 of the manual usually). See mansrc.
  7974.  
  7975. =back
  7976.  
  7977. =cut
  7978.  
  7979. =head2 t
  7980.  
  7981. =over 4
  7982.  
  7983. =cut
  7984.  
  7985. =item C<tail>
  7986.  
  7987. From F<Loc.U>:
  7988.  
  7989. This variable is defined but not used by Configure.
  7990. The value is the empty string and is not useful.
  7991.  
  7992. =item C<tar>
  7993.  
  7994. From F<Loc.U>:
  7995.  
  7996. This variable is defined but not used by Configure.
  7997. The value is the empty string and is not useful.
  7998.  
  7999. =item C<targetarch>
  8000.  
  8001. From F<Cross.U>:
  8002.  
  8003. If cross-compiling, this variable contains the target architecture.
  8004. If not, this will be empty.
  8005.  
  8006. =item C<tbl>
  8007.  
  8008. From F<Loc.U>:
  8009.  
  8010. This variable is defined but not used by Configure.
  8011. The value is the empty string and is not useful.
  8012.  
  8013. =item C<tee>
  8014.  
  8015. From F<Loc.U>:
  8016.  
  8017. This variable is defined but not used by Configure.
  8018. The value is the empty string and is not useful.
  8019.  
  8020. =item C<test>
  8021.  
  8022. From F<Loc.U>:
  8023.  
  8024. This variable is used internally by Configure to determine the
  8025. full pathname (if any) of the test program.  After Configure runs,
  8026. the value is reset to a plain C<test> and is not useful.
  8027.  
  8028. =item C<timeincl>
  8029.  
  8030. From F<i_time.U>:
  8031.  
  8032. This variable holds the full path of the included time header(s).
  8033.  
  8034. =item C<timetype>
  8035.  
  8036. From F<d_time.U>:
  8037.  
  8038. This variable holds the type returned by time(). It can be long,
  8039. or time_t on C<BSD> sites (in which case <sys/types.h> should be
  8040. included). Anyway, the type Time_t should be used.
  8041.  
  8042. =item C<tmpnam_r_proto>
  8043.  
  8044. From F<d_tmpnam_r.U>:
  8045.  
  8046. This variable encodes the prototype of tmpnam_r.
  8047. It is zero if d_tmpnam_r is undef, and one of the
  8048. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_tmpnam_r
  8049. is defined.
  8050.  
  8051. =item C<to>
  8052.  
  8053. From F<Cross.U>:
  8054.  
  8055. This variable contains the command used by Configure
  8056. to copy to from the target host.  Useful and available
  8057. only during Perl build.
  8058. The string C<:> if not cross-compiling.
  8059.  
  8060. =item C<touch>
  8061.  
  8062. From F<Loc.U>:
  8063.  
  8064. This variable is used internally by Configure to determine the
  8065. full pathname (if any) of the touch program.  After Configure runs,
  8066. the value is reset to a plain C<touch> and is not useful.
  8067.  
  8068. =item C<tr>
  8069.  
  8070. From F<Loc.U>:
  8071.  
  8072. This variable is used internally by Configure to determine the
  8073. full pathname (if any) of the tr program.  After Configure runs,
  8074. the value is reset to a plain C<tr> and is not useful.
  8075.  
  8076. =item C<trnl>
  8077.  
  8078. From F<trnl.U>:
  8079.  
  8080. This variable contains the value to be passed to the tr(1)
  8081. command to transliterate a newline.  Typical values are
  8082. C<\012> and C<\n>.  This is needed for C<EBCDIC> systems where
  8083. newline is not necessarily C<\012>.
  8084.  
  8085. =item C<troff>
  8086.  
  8087. From F<Loc.U>:
  8088.  
  8089. This variable is defined but not used by Configure.
  8090. The value is the empty string and is not useful.
  8091.  
  8092. =item C<ttyname_r_proto>
  8093.  
  8094. From F<d_ttyname_r.U>:
  8095.  
  8096. This variable encodes the prototype of ttyname_r.
  8097. It is zero if d_ttyname_r is undef, and one of the
  8098. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_ttyname_r
  8099. is defined.
  8100.  
  8101. =back
  8102.  
  8103. =cut
  8104.  
  8105. =head2 u
  8106.  
  8107. =over 4
  8108.  
  8109. =cut
  8110.  
  8111. =item C<u16size>
  8112.  
  8113. From F<perlxv.U>:
  8114.  
  8115. This variable is the size of an U16 in bytes.
  8116.  
  8117. =item C<u16type>
  8118.  
  8119. From F<perlxv.U>:
  8120.  
  8121. This variable contains the C type used for Perl's U16.
  8122.  
  8123. =item C<u32size>
  8124.  
  8125. From F<perlxv.U>:
  8126.  
  8127. This variable is the size of an U32 in bytes.
  8128.  
  8129. =item C<u32type>
  8130.  
  8131. From F<perlxv.U>:
  8132.  
  8133. This variable contains the C type used for Perl's U32.
  8134.  
  8135. =item C<u64size>
  8136.  
  8137. From F<perlxv.U>:
  8138.  
  8139. This variable is the size of an U64 in bytes.
  8140.  
  8141. =item C<u64type>
  8142.  
  8143. From F<perlxv.U>:
  8144.  
  8145. This variable contains the C type used for Perl's U64.
  8146.  
  8147. =item C<u8size>
  8148.  
  8149. From F<perlxv.U>:
  8150.  
  8151. This variable is the size of an U8 in bytes.
  8152.  
  8153. =item C<u8type>
  8154.  
  8155. From F<perlxv.U>:
  8156.  
  8157. This variable contains the C type used for Perl's U8.
  8158.  
  8159. =item C<uidformat>
  8160.  
  8161. From F<uidf.U>:
  8162.  
  8163. This variable contains the format string used for printing a Uid_t.
  8164.  
  8165. =item C<uidsign>
  8166.  
  8167. From F<uidsign.U>:
  8168.  
  8169. This variable contains the signedness of a uidtype.
  8170. 1 for unsigned, -1 for signed.
  8171.  
  8172. =item C<uidsize>
  8173.  
  8174. From F<uidsize.U>:
  8175.  
  8176. This variable contains the size of a uidtype in bytes.
  8177.  
  8178. =item C<uidtype>
  8179.  
  8180. From F<uidtype.U>:
  8181.  
  8182. This variable defines Uid_t to be something like uid_t, int,
  8183. ushort, or whatever type is used to declare user ids in the kernel.
  8184.  
  8185. =item C<uname>
  8186.  
  8187. From F<Loc.U>:
  8188.  
  8189. This variable is used internally by Configure to determine the
  8190. full pathname (if any) of the uname program.  After Configure runs,
  8191. the value is reset to a plain C<uname> and is not useful.
  8192.  
  8193. =item C<uniq>
  8194.  
  8195. From F<Loc.U>:
  8196.  
  8197. This variable is used internally by Configure to determine the
  8198. full pathname (if any) of the uniq program.  After Configure runs,
  8199. the value is reset to a plain C<uniq> and is not useful.
  8200.  
  8201. =item C<uquadtype>
  8202.  
  8203. From F<quadtype.U>:
  8204.  
  8205. This variable defines Uquad_t to be something like unsigned long,
  8206. unsigned int, unsigned long long, uint64_t, or whatever type is
  8207. used for 64-bit integers.
  8208.  
  8209. =item C<use5005threads>
  8210.  
  8211. From F<usethreads.U>:
  8212.  
  8213. This variable conditionally defines the USE_5005THREADS symbol,
  8214. and indicates that Perl should be built to use the 5.005-based
  8215. threading implementation. Only valid up to 5.8.x.
  8216.  
  8217. =item C<use64bitall>
  8218.  
  8219. From F<use64bits.U>:
  8220.  
  8221. This variable conditionally defines the USE_64_BIT_ALL symbol,
  8222. and indicates that 64-bit integer types should be used
  8223. when available.  The maximal possible
  8224. 64-bitness is employed: LP64 or ILP64, meaning that you will
  8225. be able to use more than 2 gigabytes of memory.  This mode is
  8226. even more binary incompatible than USE_64_BIT_INT. You may not
  8227. be able to run the resulting executable in a 32-bit C<CPU> at all or
  8228. you may need at least to reboot your C<OS> to 64-bit mode.
  8229.  
  8230. =item C<use64bitint>
  8231.  
  8232. From F<use64bits.U>:
  8233.  
  8234. This variable conditionally defines the USE_64_BIT_INT symbol,
  8235. and indicates that 64-bit integer types should be used
  8236. when available.  The minimal possible 64-bitness
  8237. is employed, just enough to get 64-bit integers into Perl.
  8238. This may mean using for example "long longs", while your memory
  8239. may still be limited to 2 gigabytes.
  8240.  
  8241. =item C<usecrosscompile>
  8242.  
  8243. From F<Cross.U>:
  8244.  
  8245. This variable conditionally defines the C<USE_CROSS_COMPILE> symbol,
  8246. and indicates that Perl has been cross-compiled.
  8247.  
  8248. =item C<usedevel>
  8249.  
  8250. From F<Devel.U>:
  8251.  
  8252. This variable indicates that Perl was configured with development
  8253. features enabled.  This should not be done for production builds.
  8254.  
  8255. =item C<usedl>
  8256.  
  8257. From F<dlsrc.U>:
  8258.  
  8259. This variable indicates if the system supports dynamic
  8260. loading of some sort.  See also dlsrc and dlobj.
  8261.  
  8262. =item C<usedtrace>
  8263.  
  8264. From F<usedtrace.U>:
  8265.  
  8266. This variable indicates whether we are compiling with dtrace
  8267. support. See also dtrace.
  8268.  
  8269. =item C<usefaststdio>
  8270.  
  8271. From F<usefaststdio.U>:
  8272.  
  8273. This variable conditionally defines the C<USE_FAST_STDIO> symbol,
  8274. and indicates that Perl should be built to use C<fast stdio>.
  8275. Defaults to define in Perls 5.8 and earlier, to undef later.
  8276.  
  8277. =item C<useithreads>
  8278.  
  8279. From F<usethreads.U>:
  8280.  
  8281. This variable conditionally defines the C<USE_ITHREADS> symbol,
  8282. and indicates that Perl should be built to use the interpreter-based
  8283. threading implementation.
  8284.  
  8285. =item C<uselargefiles>
  8286.  
  8287. From F<uselfs.U>:
  8288.  
  8289. This variable conditionally defines the C<USE_LARGE_FILES> symbol,
  8290. and indicates that large file interfaces should be used when
  8291. available.
  8292.  
  8293. =item C<uselongdouble>
  8294.  
  8295. From F<uselongdbl.U>:
  8296.  
  8297. This variable conditionally defines the C<USE_LONG_DOUBLE> symbol,
  8298. and indicates that long doubles should be used when available.
  8299.  
  8300. =item C<usemallocwrap>
  8301.  
  8302. From F<mallocsrc.U>:
  8303.  
  8304. This variable contains y if we are wrapping malloc to prevent
  8305. integer overflow during size calculations.
  8306.  
  8307. =item C<usemorebits>
  8308.  
  8309. From F<usemorebits.U>:
  8310.  
  8311. This variable conditionally defines the C<USE_MORE_BITS> symbol,
  8312. and indicates that explicit 64-bit interfaces and long doubles
  8313. should be used when available.
  8314.  
  8315. =item C<usemultiplicity>
  8316.  
  8317. From F<usemultiplicity.U>:
  8318.  
  8319. This variable conditionally defines the C<MULTIPLICITY> symbol,
  8320. and indicates that Perl should be built to use multiplicity.
  8321.  
  8322. =item C<usemymalloc>
  8323.  
  8324. From F<mallocsrc.U>:
  8325.  
  8326. This variable contains y if the malloc that comes with this package
  8327. is desired over the system's version of malloc.  People often include
  8328. special versions of malloc for effiency, but such versions are often
  8329. less portable.  See also mallocsrc and mallocobj.
  8330. If this is C<y>, then -lmalloc is removed from $libs.
  8331.  
  8332. =item C<usenm>
  8333.  
  8334. From F<usenm.U>:
  8335.  
  8336. This variable contains C<true> or C<false> depending whether the
  8337. nm extraction is wanted or not.
  8338.  
  8339. =item C<useopcode>
  8340.  
  8341. From F<Extensions.U>:
  8342.  
  8343. This variable holds either C<true> or C<false> to indicate
  8344. whether the Opcode extension should be used.  The sole
  8345. use for this currently is to allow an easy mechanism
  8346. for users to skip the Opcode extension from the Configure
  8347. command line.
  8348.  
  8349. =item C<useperlio>
  8350.  
  8351. From F<useperlio.U>:
  8352.  
  8353. This variable conditionally defines the C<USE_PERLIO> symbol,
  8354. and indicates that the PerlIO abstraction should be
  8355. used throughout.
  8356.  
  8357. =item C<useposix>
  8358.  
  8359. From F<Extensions.U>:
  8360.  
  8361. This variable holds either C<true> or C<false> to indicate
  8362. whether the C<POSIX> extension should be used.  The sole
  8363. use for this currently is to allow an easy mechanism
  8364. for hints files to indicate that C<POSIX> will not compile
  8365. on a particular system.
  8366.  
  8367. =item C<usereentrant>
  8368.  
  8369. From F<usethreads.U>:
  8370.  
  8371. This variable conditionally defines the C<USE_REENTRANT_API> symbol,
  8372. which indicates that the thread code may try to use the various
  8373. _r versions of library functions.  This is only potentially
  8374. meaningful if usethreads is set and is very experimental, it is
  8375. not even prompted for.
  8376.  
  8377. =item C<userelocatableinc>
  8378.  
  8379. From F<bin.U>:
  8380.  
  8381. This variable is set to true to indicate that perl should relocate
  8382. @C<INC> entries at runtime based on the path to the perl binary.
  8383. Any @C<INC> paths starting F<.../> are relocated relative to the directory
  8384. containing the perl binary, and a logical cleanup of the path is then
  8385. made around the join point (removing F<dir/../> pairs)
  8386.  
  8387. =item C<usesfio>
  8388.  
  8389. From F<d_sfio.U>:
  8390.  
  8391. This variable is set to true when the user agrees to use sfio.
  8392. It is set to false when sfio is not available or when the user
  8393. explicitely requests not to use sfio.  It is here primarily so
  8394. that command-line settings can override the auto-detection of
  8395. d_sfio without running into a "WHOA THERE".
  8396.  
  8397. =item C<useshrplib>
  8398.  
  8399. From F<libperl.U>:
  8400.  
  8401. This variable is set to C<true> if the user wishes
  8402. to build a shared libperl, and C<false> otherwise.
  8403.  
  8404. =item C<usesitecustomize>
  8405.  
  8406. From F<d_sitecustomize.U>:
  8407.  
  8408. This variable is set to true when the user requires a mechanism that
  8409. allows the sysadmin to add entries to @C<INC> at runtime.  This variable
  8410. being set, makes perl run F<$F<sitelib/sitecustomize.pl>> at startup.
  8411.  
  8412. =item C<usesocks>
  8413.  
  8414. From F<usesocks.U>:
  8415.  
  8416. This variable conditionally defines the C<USE_SOCKS> symbol,
  8417. and indicates that Perl should be built to use C<SOCKS>.
  8418.  
  8419. =item C<usethreads>
  8420.  
  8421. From F<usethreads.U>:
  8422.  
  8423. This variable conditionally defines the C<USE_THREADS> symbol,
  8424. and indicates that Perl should be built to use threads.
  8425.  
  8426. =item C<usevendorprefix>
  8427.  
  8428. From F<vendorprefix.U>:
  8429.  
  8430. This variable tells whether the vendorprefix
  8431. and consequently other vendor* paths are in use.
  8432.  
  8433. =item C<usevfork>
  8434.  
  8435. From F<d_vfork.U>:
  8436.  
  8437. This variable is set to true when the user accepts to use vfork.
  8438. It is set to false when no vfork is available or when the user
  8439. explicitely requests not to use vfork.
  8440.  
  8441. =item C<usrinc>
  8442.  
  8443. From F<usrinc.U>:
  8444.  
  8445. This variable holds the path of the include files, which is
  8446. usually F</usr/include>. It is mainly used by other Configure units.
  8447.  
  8448. =item C<uuname>
  8449.  
  8450. From F<Loc.U>:
  8451.  
  8452. This variable is defined but not used by Configure.
  8453. The value is the empty string and is not useful.
  8454.  
  8455. =item C<uvoformat>
  8456.  
  8457. From F<perlxvf.U>:
  8458.  
  8459. This variable contains the format string used for printing
  8460. a Perl C<UV> as an unsigned octal integer.
  8461.  
  8462. =item C<uvsize>
  8463.  
  8464. From F<perlxv.U>:
  8465.  
  8466. This variable is the size of a C<UV> in bytes.
  8467.  
  8468. =item C<uvtype>
  8469.  
  8470. From F<perlxv.U>:
  8471.  
  8472. This variable contains the C type used for Perl's C<UV>.
  8473.  
  8474. =item C<uvuformat>
  8475.  
  8476. From F<perlxvf.U>:
  8477.  
  8478. This variable contains the format string used for printing
  8479. a Perl C<UV> as an unsigned decimal integer.
  8480.  
  8481. =item C<uvxformat>
  8482.  
  8483. From F<perlxvf.U>:
  8484.  
  8485. This variable contains the format string used for printing
  8486. a Perl C<UV> as an unsigned hexadecimal integer in lowercase abcdef.
  8487.  
  8488. =item C<uvXUformat>
  8489.  
  8490. From F<perlxvf.U>:
  8491.  
  8492. This variable contains the format string used for printing
  8493. a Perl C<UV> as an unsigned hexadecimal integer in uppercase C<ABCDEF>.
  8494.  
  8495. =back
  8496.  
  8497. =cut
  8498.  
  8499. =head2 v
  8500.  
  8501. =over 4
  8502.  
  8503. =cut
  8504.  
  8505. =item C<vendorarch>
  8506.  
  8507. From F<vendorarch.U>:
  8508.  
  8509. This variable contains the value of the C<PERL_VENDORARCH> symbol.
  8510. It may have a F<~> on the front.
  8511. The standard distribution will put nothing in this directory.
  8512. Vendors who distribute perl may wish to place their own
  8513. architecture-dependent modules and extensions in this directory with
  8514. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor
  8515. or equivalent.  See C<INSTALL> for details.
  8516.  
  8517. =item C<vendorarchexp>
  8518.  
  8519. From F<vendorarch.U>:
  8520.  
  8521. This variable is the F<~name> expanded version of vendorarch, so that you
  8522. may use it directly in Makefiles or shell scripts.
  8523.  
  8524. =item C<vendorbin>
  8525.  
  8526. From F<vendorbin.U>:
  8527.  
  8528. This variable contains the eventual value of the C<VENDORBIN> symbol.
  8529. It may have a F<~> on the front.
  8530. The standard distribution will put nothing in this directory.
  8531. Vendors who distribute perl may wish to place additional
  8532. binaries in this directory with
  8533. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor
  8534. or equivalent.  See C<INSTALL> for details.
  8535.  
  8536. =item C<vendorbinexp>
  8537.  
  8538. From F<vendorbin.U>:
  8539.  
  8540. This variable is the F<~name> expanded version of vendorbin, so that you
  8541. may use it directly in Makefiles or shell scripts.
  8542.  
  8543. =item C<vendorhtml1dir>
  8544.  
  8545. From F<vendorhtml1dir.U>:
  8546.  
  8547. This variable contains the name of the directory for html
  8548. pages.  It may have a F<~> on the front.
  8549. The standard distribution will put nothing in this directory.
  8550. Vendors who distribute perl may wish to place their own
  8551. html pages in this directory with
  8552. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor
  8553. or equivalent.  See C<INSTALL> for details.
  8554.  
  8555. =item C<vendorhtml1direxp>
  8556.  
  8557. From F<vendorhtml1dir.U>:
  8558.  
  8559. This variable is the F<~name> expanded version of vendorhtml1dir, so that you
  8560. may use it directly in Makefiles or shell scripts.
  8561.  
  8562. =item C<vendorhtml3dir>
  8563.  
  8564. From F<vendorhtml3dir.U>:
  8565.  
  8566. This variable contains the name of the directory for html
  8567. library pages.  It may have a F<~> on the front.
  8568. The standard distribution will put nothing in this directory.
  8569. Vendors who distribute perl may wish to place their own
  8570. html pages for modules and extensions in this directory with
  8571. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor
  8572. or equivalent.  See C<INSTALL> for details.
  8573.  
  8574. =item C<vendorhtml3direxp>
  8575.  
  8576. From F<vendorhtml3dir.U>:
  8577.  
  8578. This variable is the F<~name> expanded version of vendorhtml3dir, so that you
  8579. may use it directly in Makefiles or shell scripts.
  8580.  
  8581. =item C<vendorlib>
  8582.  
  8583. From F<vendorlib.U>:
  8584.  
  8585. This variable contains the eventual value of the C<VENDORLIB> symbol,
  8586. which is the name of the private library for this package.
  8587. The standard distribution will put nothing in this directory.
  8588. Vendors who distribute perl may wish to place their own
  8589. modules in this directory with
  8590. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor
  8591. or equivalent.  See C<INSTALL> for details.
  8592.  
  8593. =item C<vendorlib_stem>
  8594.  
  8595. From F<vendorlib.U>:
  8596.  
  8597. This variable is $vendorlibexp with any trailing version-specific component
  8598. removed.  The elements in inc_version_list (F<inc_version_list.U>) can
  8599. be tacked onto this variable to generate a list of directories to search.
  8600.  
  8601. =item C<vendorlibexp>
  8602.  
  8603. From F<vendorlib.U>:
  8604.  
  8605. This variable is the F<~name> expanded version of vendorlib, so that you
  8606. may use it directly in Makefiles or shell scripts.
  8607.  
  8608. =item C<vendorman1dir>
  8609.  
  8610. From F<vendorman1dir.U>:
  8611.  
  8612. This variable contains the name of the directory for man1
  8613. pages.  It may have a F<~> on the front.
  8614. The standard distribution will put nothing in this directory.
  8615. Vendors who distribute perl may wish to place their own
  8616. man1 pages in this directory with
  8617. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor
  8618. or equivalent.  See C<INSTALL> for details.
  8619.  
  8620. =item C<vendorman1direxp>
  8621.  
  8622. From F<vendorman1dir.U>:
  8623.  
  8624. This variable is the F<~name> expanded version of vendorman1dir, so that you
  8625. may use it directly in Makefiles or shell scripts.
  8626.  
  8627. =item C<vendorman3dir>
  8628.  
  8629. From F<vendorman3dir.U>:
  8630.  
  8631. This variable contains the name of the directory for man3
  8632. pages.  It may have a F<~> on the front.
  8633. The standard distribution will put nothing in this directory.
  8634. Vendors who distribute perl may wish to place their own
  8635. man3 pages in this directory with
  8636. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor
  8637. or equivalent.  See C<INSTALL> for details.
  8638.  
  8639. =item C<vendorman3direxp>
  8640.  
  8641. From F<vendorman3dir.U>:
  8642.  
  8643. This variable is the F<~name> expanded version of vendorman3dir, so that you
  8644. may use it directly in Makefiles or shell scripts.
  8645.  
  8646. =item C<vendorprefix>
  8647.  
  8648. From F<vendorprefix.U>:
  8649.  
  8650. This variable holds the full absolute path of the directory below
  8651. which the vendor will install add-on packages.
  8652. See C<INSTALL> for usage and examples.
  8653.  
  8654. =item C<vendorprefixexp>
  8655.  
  8656. From F<vendorprefix.U>:
  8657.  
  8658. This variable holds the full absolute path of the directory below
  8659. which the vendor will install add-on packages.  Derived from vendorprefix.
  8660.  
  8661. =item C<vendorscript>
  8662.  
  8663. From F<vendorscript.U>:
  8664.  
  8665. This variable contains the eventual value of the C<VENDORSCRIPT> symbol.
  8666. It may have a F<~> on the front.
  8667. The standard distribution will put nothing in this directory.
  8668. Vendors who distribute perl may wish to place additional
  8669. executable scripts in this directory with
  8670. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor
  8671. or equivalent.  See C<INSTALL> for details.
  8672.  
  8673. =item C<vendorscriptexp>
  8674.  
  8675. From F<vendorscript.U>:
  8676.  
  8677. This variable is the F<~name> expanded version of vendorscript, so that you
  8678. may use it directly in Makefiles or shell scripts.
  8679.  
  8680. =item C<version>
  8681.  
  8682. From F<patchlevel.U>:
  8683.  
  8684. The full version number of this package, such as 5.6.1 (or 5_6_1).
  8685. This combines revision, patchlevel, and subversion to get the
  8686. full version number, including any possible subversions.
  8687. This is suitable for use as a directory name, and hence is
  8688. filesystem dependent.
  8689.  
  8690. =item C<version_patchlevel_string>
  8691.  
  8692. From F<patchlevel.U>:
  8693.  
  8694. This is a string combining version, subversion and
  8695. perl_patchlevel (if perl_patchlevel is non-zero).
  8696. It is typically something like
  8697. 'version 7 subversion 1'  or
  8698. 'version 7 subversion 1 patchlevel 11224'
  8699. It is computed here to avoid duplication of code in F<myconfig.SH>
  8700. and F<lib/Config.pm>.
  8701.  
  8702. =item C<versiononly>
  8703.  
  8704. From F<versiononly.U>:
  8705.  
  8706. If set, this symbol indicates that only the version-specific
  8707. components of a perl installation should be installed.
  8708. This may be useful for making a test installation of a new
  8709. version without disturbing the existing installation.
  8710. Setting versiononly is equivalent to setting installperl's -v option.
  8711. In particular, the non-versioned scripts and programs such as
  8712. a2p, c2ph, h2xs, pod2*, and perldoc are not installed
  8713. (see C<INSTALL> for a more complete list).  Nor are the man
  8714. pages installed.
  8715. Usually, this is undef.
  8716.  
  8717. =item C<vi>
  8718.  
  8719. From F<Loc.U>:
  8720.  
  8721. This variable is defined but not used by Configure.
  8722. The value is the empty string and is not useful.
  8723.  
  8724. =item C<voidflags>
  8725.  
  8726. From F<voidflags.U>:
  8727.  
  8728. This variable contains the eventual value of the C<VOIDFLAGS> symbol,
  8729. which indicates how much support of the void type is given by this
  8730. compiler.  See C<VOIDFLAGS> for more info.
  8731.  
  8732. =back
  8733.  
  8734. =cut
  8735.  
  8736. =head2 x
  8737.  
  8738. =over 4
  8739.  
  8740. =cut
  8741.  
  8742. =item C<xlibpth>
  8743.  
  8744. From F<libpth.U>:
  8745.  
  8746. This variable holds extra path (space-separated) used to find
  8747. libraries on this platform, for example C<CPU>-specific libraries
  8748. (on multi-C<CPU> platforms) may be listed here.
  8749.  
  8750. =back
  8751.  
  8752. =cut
  8753.  
  8754. =head2 y
  8755.  
  8756. =over 4
  8757.  
  8758. =cut
  8759.  
  8760. =item C<yacc>
  8761.  
  8762. From F<yacc.U>:
  8763.  
  8764. This variable holds the name of the compiler compiler we
  8765. want to use in the Makefile. It can be yacc, byacc, or bison -y.
  8766.  
  8767. =item C<yaccflags>
  8768.  
  8769. From F<yacc.U>:
  8770.  
  8771. This variable contains any additional yacc flags desired by the
  8772. user.  It is up to the Makefile to use this.
  8773.  
  8774. =back
  8775.  
  8776. =cut
  8777.  
  8778. =head2 z
  8779.  
  8780. =over 4
  8781.  
  8782. =cut
  8783.  
  8784. =item C<zcat>
  8785.  
  8786. From F<Loc.U>:
  8787.  
  8788. This variable is defined but not used by Configure.
  8789. The value is the empty string and is not useful.
  8790.  
  8791. =item C<zip>
  8792.  
  8793. From F<Loc.U>:
  8794.  
  8795. This variable is used internally by Configure to determine the
  8796. full pathname (if any) of the zip program.  After Configure runs,
  8797. the value is reset to a plain C<zip> and is not useful.
  8798.  
  8799.  
  8800. =back
  8801.  
  8802. =head1 GIT DATA
  8803.  
  8804. Information on the git commit from which the current perl binary was compiled
  8805. can be found in the variable C<$Config::Git_Data>.  The variable is a
  8806. structured string that looks something like this:
  8807.  
  8808.   git_commit_id='ea0c2dbd5f5ac6845ecc7ec6696415bf8e27bd52'
  8809.   git_describe='GitLive-blead-1076-gea0c2db'
  8810.   git_branch='smartmatch'
  8811.   git_uncommitted_changes=''
  8812.   git_commit_id_title='Commit id:'
  8813.   git_commit_date='2009-05-09 17:47:31 +0200'
  8814.  
  8815. Its format is not guaranteed not to change over time.
  8816.  
  8817. =head1 NOTE
  8818.  
  8819. This module contains a good example of how to use tie to implement a
  8820. cache and an example of how to make a tied variable readonly to those
  8821. outside of it.
  8822.  
  8823. =cut
  8824.  
  8825.